杭电Color the ball1556
生活随笔
收集整理的這篇文章主要介紹了
杭电Color the ball1556
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Color the ball
Time Limit: 9000/3000 MS (Java/Others)????Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 13689????Accepted Submission(s): 6875
Problem Description N個氣球排成一排,從左到右依次編號為1,2,3....N.每次給定2個整數a b(a <= b),lele便為騎上他的“小飛鴿"牌電動車從氣球a開始到氣球b依次給每個氣球涂一次顏色。但是N次以后lele已經忘記了第I個氣球已經涂過幾次顏色了,你能幫他算出每個氣球被涂過幾次顏色嗎?
Input 每個測試實例第一行為一個整數N,(N <= 100000).接下來的N行,每行包括2個整數a b(1 <= a <= b <= N)。
當N = 0,輸入結束。
Output 每個測試實例輸出一行,包括N個整數,第I個數代表第I個氣球總共被涂色的次數。
Sample Input 3 1 1 2 2 3 3 3 1 1 1 2 1 3 0
Sample Output 1 1 1 3 2 1#include <string.h> #include <stdio.h> const int SIZE = 100005; int tree[SIZE]; inline int lowbit(int x) {return x & (-x); } void update(int x, int val, int len) {while (x <= len){tree[x] += val;x += lowbit(x);} } int query(int x) {int ans = 0;while (x > 0){ans += tree[x];x -= lowbit(x);}return ans; } int main() {int n, a, b;while (scanf("%d", &n) && n != 0){memset(tree,0,sizeof(tree));? for(int i = 0; i < n; i++)? {? scanf("%d%d",&a,&b);? update(a,1, n);? update(b+1,-1, n);? }? for(int i=1;i<n;i++)? {? printf("%d ",query(i));? }? printf("%d\n",query(n));? }return 0; }
總結
以上是生活随笔為你收集整理的杭电Color the ball1556的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数组树模板
- 下一篇: Chrome 开发工具指南——通过工作空