上题:
1 10 1 2 3 4 5 6 7 8 9 10 Query 1 3 Add 3 6 Query 2 7 Sub 10 2 Add 6 3 Query 3 10 EndSample Output
Case 1: 6 33 59
中文题,没啥好翻译的啦,就是线段树的求区间和的模板,,,无耻的发一波凑数
上代码:
#include
#include
#include
#include
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
const int maxn=55555;
int sum[maxn<<2];
void pushup(int rt)
{
sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}
void buildup(int l,int r,int rt)
{
if(l==r)
{
scanf("%d",&sum[rt]);
return ;
}
int m=(l+r)>>1;
buildup(lson);
buildup(rson);
pushup(rt);
}
void update(int p,int add,int l,int r,int rt)
{
if(l==r)
{
sum[rt]+=add;
return ;
}
int m=(l+r)>>1;
if(p<=m)
{
update(p,add,lson);
}
else
{
update(p,add,rson);
}
pushup(rt);
}
int query(int L,int R,int l,int r,int rt)
{
if(L<=l&&R>=r)
{
return sum[rt];
}
int m=(l+r)>>1;
int ret=0;
if(L<=m)
{
ret+=query(L,R,lson);
}
if(R>m)
{
ret+=query(L,R,rson);
}
return ret;
}
int main()
{
int t;
int ca=1;
scanf("%d",&t);
while(t--)
{
int n;
scanf("%d",&n);
printf("Case %d:\n",ca++);
buildup(1,n,1);
// printf("----\n");
char op[23];
while(cin>>op)
{
// printf("------\n");
if(op[0]=='E')
{
break;
}
int a,b;
scanf("%d%d",&a,&b);
if(op[0]=='A')
{
update(a,b,1,n,1);
}
else if(op[0]=='Q'){
printf("%d\n",query(a,b,1,n,1));
}
else
{
update(a,-b,1,n,1);
}
}
}
return 0;
}