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 End
Case 1: 6 33 59
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1166
分析:这题要求每次更新一个点,每次维护一个区间的和,比较简单,直接模板即可。。。一直以为我会线段树,原来只是见过= =
代码:
#include<cstdio> #include<cmath> #include<cstring> #include<iostream> #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 using namespace std; const int mm=222222; int sum[mm]; int i,k,n,cs=0,t; char s[55]; void pushup(int rt) { sum[rt]=sum[rt<<1]+sum[rt<<1|1]; } void build(int l,int r,int rt) { if(l==r) { scanf("%d",&sum[rt]); return; } int m=(l+r)>>1; build(lson); build(rson); pushup(rt); } void updata(int p,int add,int l,int r,int rt) { sum[rt]+=add; if(l==r)return; int m=(l+r)>>1; if(p<=m)updata(p,add,lson); else updata(p,add,rson); } int query(int L,int R,int l,int r,int rt) { if(L<=l&&R>=r)return sum[rt]; int ret=0,m=(l+r)>>1; if(L<=m)ret+=query(L,R,lson); if(R>m)ret+=query(L,R,rson); return ret; } int main() { scanf("%d",&t); while(t--) { scanf("%d",&n); build(1,n,1); printf("Case %d:\n",++cs); while(1) { scanf("%s",s); if(s[0]=='E')break; scanf("%d%d",&i,&k); if(s[0]=='A')updata(i,k,1,n,1); if(s[0]=='S')updata(i,-k,1,n,1); if(s[0]=='Q')printf("%d\n",query(i,k,1,n,1)); } } return 0; }