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

HDU 1166 敌兵布阵 树状数组

时间:2016-05-03 21:59:54      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

看的别人的博客学的树状数组:

http://blog.csdn.net/lulipeng_cpp/article/details/7816527

http://blog.csdn.net/queuelovestack/article/details/47414119

/*          树状数组                */
#include <algorithm>
#include <cstdio>
#include <iostream>
#include <cstring>
#define N 51000
using namespace std;
int a[N],c[N],n;
int lowbit(int x)/*     c[t]展开以后有多少项        */
{
    return x&(-x);
}
int SUM(int i)/*        求a数组的前n项和               */
{
    int sum=0;
    while(i>0) {
        sum+=c[i];
        i-=lowbit(i);
    }
    return sum;
}
void update(int x,int y)/*      更新数组c      */
{
    while(x<=n) {
        c[x]+=y;
        x+=lowbit(x);
    }
}
void creat()/*      创建树状数组c                  */
{
    int i=1;
    while(i<=n) {
        update(i,a[i]);
        i++;
    }
}
int main()
{
    int t;
    cin>>t;
    for(int m=1; m<=t; m++) {
        int i;
        scanf("%d",&n);
        memset(c,0,sizeof(c));
        memset(a,0,sizeof(a));
        for(i=1; i<=n; i++)
            scanf("%d",a+i);
        creat();
        printf("Case %d:\n",m);
        getchar();
        string s;
        while(1) {
            cin>>s;
            if(s=="End")
                break;
            int x,y;
            scanf("%d %d%*c",&x,&y);
            if(s=="Query")
                printf("%d\n",SUM(y)-SUM(x-1));
            else if(s=="Add")
                update(x,y);
            else
                update(x,-y);
        }
    }
    return 0;
}

 

HDU 1166 敌兵布阵 树状数组

标签:

原文地址:http://www.cnblogs.com/yu0111/p/5456462.html

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