Hdu1166-- 线段树模板

简介: #include<iostream>#include<cstdio>using namespace std;#define lson l,m,rt<<1#define rson m+1,r,rt<<1|1const int maxn=555555;int sum[maxn<<2];void pushup(int
#include<iostream>
#include<cstdio>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
const int maxn=555555;
int sum[maxn<<2];
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 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=(r+l)>>1;
    int ans=0;
    if(L<=m)
        ans+=query(L,R,lson);
    if(R>m)
        ans+=query(L,R,rson);
    return ans;
}
int main()
{
    int t,casenum=1;
    scanf("%d",&t);
    while(t--)
    {
       printf("Case %d:\n",casenum++);
        int n;
        scanf("%d",&n);
        build(1,n,1);
        char s[10];
        while(scanf("%s",s))
        {
            int a,b;
            if(s[0]=='E')
                break;
             scanf("%d %d",&a,&b);
            if(s[0]=='Q')
               printf("%d\n",query(a,b,1,n,1));
            else if(s[0]=='A')
                update(a,b,1,n,1);
            else if(s[0]=='S')
                update(a,-b,1,n,1);
        }
    }
    return 0;
}

  

目录
相关文章
|
8月前
Luogu P3379 【模板】最近公共祖先(LCA),树链剖分求LCA模板
Luogu P3379 【模板】最近公共祖先(LCA),树链剖分求LCA模板
44 0
|
8月前
【每日一题Day249】LC1186删除一次得到子数组最大和 | 动态规划
【每日一题Day249】LC1186删除一次得到子数组最大和 | 动态规划
50 0
每日一题---689. 三个无重叠子数组的最大和[力扣][Go]
每日一题---689. 三个无重叠子数组的最大和[力扣][Go]
每日一题---689. 三个无重叠子数组的最大和[力扣][Go]
|
SQL Shell
HDU-4348 To the moon(主席树区间修改 永久化标记)
HDU-4348 To the moon(主席树区间修改 永久化标记)
151 0
HDU-4348 To the moon(主席树区间修改 永久化标记)
|
算法 Go C++
UPC Go Home(贪心 || 前缀和+二分)(STL二分函数的使用)
UPC Go Home(贪心 || 前缀和+二分)(STL二分函数的使用)
92 0
HDU3915 Game (高斯消元求自由元个数)
HDU3915 Game (高斯消元求自由元个数)
110 0
|
Perl
Codeforces 1312E. Array Shrinking(区间DP 栈)
Codeforces 1312E. Array Shrinking(区间DP 栈)
102 0
|
人工智能 Java
HDU-敌兵布阵(线段树 || 树状数组)
HDU-敌兵布阵(线段树 || 树状数组)
96 0
|
存储 测试技术
HDOJ(HDU) 2523 SORT AGAIN(推导排序、、)
HDOJ(HDU) 2523 SORT AGAIN(推导排序、、)
108 0

热门文章

最新文章