poj 1061 士兵杀敌

树状数组。

模板

int lowbit(int x)
{
    return x & (-x);
}
void modify(int x,int add)//一维
{  
    while(x<=MAXN)  
    {      
        a[x]+=add;    
        x+=lowbit(x); 
    }
}
int get_sum(int x)
{  
    int ret=0; 
    while(x!=0)  
    {       
        ret+=a[x];   
        x-=lowbit(x);   
    }  
    return ret;
}
这样把查询,增加的复杂度变为logn  

但是如果用c++的流输入输出。800+ms   快超时了,

换成c的 就300+ms  

还是用c 吧以后。。。 好危险。

#include<iostream>
#include<cstdio>
#include<cstring>
#define N 50020
#define LL long long
using namespace std;
int n,c[N];
int lowbit(int x)
{
    return x&(-x);
}
void add(int i,int val)
{
    while(i<=n)
    {
        c[i]+=val;
        i+=lowbit(i);
    }
}
int sum(int i)
{
    int s=0;
    while(i>0)
    {
        s+=c[i];
        i-=lowbit(i);
    }
    return s;
}
int main()
{
    int T,t,ca=1;
    char str[10];
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        printf("Case %d:\n",ca++);
        memset(c,0,sizeof(c));
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&t);
            add(i,t);
        }

        while(1)
        {
            int x,y;
            scanf("%s",str);
            if(str[0]=='E') break;
            if(str[0]=='Q')
            {
                scanf("%d%d",&x,&y);
                printf("%d\n",sum(y)-sum(x-1));
            }
            else if(str[0]=='A')
            {
                scanf("%d%d",&x,&y);
                add(x,y);
            }
            else if(str[0]=='S')
            {
                scanf("%d%d",&x,&y);
                add(x,-y);
            }
            //else break;
        }



    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值