标签:
3 1 1 2 2 3 3 3 1 1 1 2 1 3 0
1 1 1 3 2 1
树状数组 区间更新 单点求值
#include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #define maxn 100000+100 using namespace std; int bit[maxn]; int lowbit(int x) { return x&(-x); } void add(int x,int y) { while(x<maxn){ bit[x]+=y; x+=lowbit(x); } } int query(int x) { int s=0; while(x>0){ s+=bit[x]; x-=lowbit(x); } return s; } int main() { int n; while(scanf("%d",&n),n){ memset(bit,0,sizeof(bit)); int a,b; for(int i=0;i<n;i++){ scanf("%d%d",&a,&b); add(a,1); add(b+1,-1); } for(int i=1;i<n;i++){ printf("%d ",query(i)); } printf("%d\n",query(n)); } return 0; }
版权声明:本文为博主原创文章,转载请注明出处。
HDOJ Color the ball 1556【树状数组】
标签:
原文地址:http://blog.csdn.net/ydd97/article/details/47133563