HDU 1556 树状数组

Posted poler

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1556 树状数组相关的知识,希望对你有一定的参考价值。

 1 #include<bits/stdc++.h>
 2 #define maxn 100010
 3 using namespace std;
 4 int C[maxn],n,m;
 5 inline int lowbit(int x){ return (x&-x);}
 6 inline void update(int x,int d){
 7     while(x<=n){
 8         C[x]+=d;
 9         x+=lowbit(x);
10     }
11 }
12 inline int getsum(int x){
13     int res=0;
14     while(x>0){
15         res+=C[x];
16         x-=lowbit(x);
17     }
18     return res;
19 }
20 int main(){
21     int u,v;
22     while(scanf("%d",&n)){
23         if(!n) return 0;
24         memset(C,0,sizeof(C));
25         for(int i=1;i<=n;i++){
26             scanf("%d%d",&u,&v);
27             update(u,1);
28             update(v+1,-1);
29         }
30         for(int i=1;i<=n;i++){
31             printf("%d%s",getsum(i),i==n?"\n":" ");
32         }
33     }
34     return 0;
35     
36 }

 

以上是关于HDU 1556 树状数组的主要内容,如果未能解决你的问题,请参考以下文章

hdu-1556 树状数组嘤嘤嘤

HDU 1556 树状数组

HDU 1556 线段树或树状数组,插段求点

hdu 1556 Color the ball (扫描线+树状数组)

hdu1556Color the ball——树状数组

HDU - 1556 Color the ball(线段树和树状数组)