码迷,mamicode.com
首页 > 编程语言 > 详细

HDU 1556 Color the ball(树状数组)(填坑)

时间:2014-12-27 17:32:55      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:acm   c语言   算法   树状数组   

题目地址:HDU 1556

因为听别人说树状数组能做的线段树都可以,所以也一直没学,但是现在遇到好多题卡线段树。。。跪了。。所以就学一下填填坑。

这题应该是树状数组的入门题了。不多说了。

代码如下:

#include <iostream>
#include <string.h>
#include <math.h>
#include <queue>
#include <algorithm>
#include <stdlib.h>
#include <map>
#include <set>
#include <stdio.h>
using namespace std;
#define LL __int64
int a[110000], n;
int lowbit(int x)
{
        return x&(-x);
}
void Update(int x, int p)
{
        while(x>0){
                a[x]+=p;
                x-=lowbit(x);
        }
}
int Sum(int x)
{
        int s=0;
        while(x<=n){
                s+=a[x];
                x+=lowbit(x);
        }
        return s;
}
int main()
{
        int i, j, l, r;
        while(scanf("%d",&n)!=EOF&&n){
                memset(a,0,sizeof(a));
                for(i=0;i<n;i++){
                        scanf("%d%d",&l,&r);
                        Update(r,1);
                        Update(l-1,-1);
                }
                for(i=1;i<=n;i++){
                        printf("%d",Sum(i));
                        if(i!=n)
                                printf(" ");
                }
                puts("");
        }
        return 0;
}


HDU 1556 Color the ball(树状数组)(填坑)

标签:acm   c语言   算法   树状数组   

原文地址:http://blog.csdn.net/scf0920/article/details/42194745

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!