成段增减,区间求和。
#include <iostream>
#include <cstdio>
using namespace std;
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
typedef long long LL;
const int maxn=110000;
LL sum[maxn<<2], col[maxn<<2];
void pushup(int rt)
{
sum[rt]=sum[rt<<1]+sum[rt<<1|1];
}
void build(int l, int r, int rt)
{
col[rt]=0;
if(l==r)
{
scanf("%I64d", &sum[rt]);
return ;
}
int mid=(l+r)>>1;
build(lson);
build(rson);
pushup(rt);
}
void pushdown(int rt, int m)
{
if(!col[rt])return ;
col[rt<<1]+=col[rt];
col[rt<<1|1]+=col[rt];
sum[rt<<1]+=(m-(m>>1))*col[rt];
sum[rt<<1|1]+=(m>>1)*col[rt];
col[rt]=0;
}
void update(int L, int R, int v, int l, int r, int rt)
{
if(L<=l && R>=r)
{
sum[rt]+=(r-l+1)*v;
col[rt]+=v;
return ;
}
int mid=(l+r)>>1;
pushdown(rt, r-l+1);
if(L<=mid)update(L, R, v, lson);
if(R>mid)update(L, R, v, rson);
pushup(rt);
}
LL query(int L, int R, int l, int r, int rt)
{
if(L<=l && R>=r)
return sum[rt];
pushdown(rt, r-l+1);
int mid=(r+l)>>1;
LL ret=0;
if(L<=mid)ret+=query(L, R, lson);
if(R>mid)ret+=query(L, R, rson);
return ret;
}
int main()
{
int n, q;
while(~scanf("%d%d", &n, &q))
{
build(1, n, 1);
while(q--)
{
char op[2];
int a, b, v;
scanf("%s", op);
if(op[0]=='Q')
{
scanf("%d%d", &a, &b);
printf("%I64d\n", query(a, b, 1, n, 1));
}
else
{
scanf("%d%d%d", &a, &b, &v);
update(a, b, v, 1, n, 1);
}
}
}
return 0;
}