• hdu_1166,线段树单点更新


    在刷线段树,参考自http://www.notonlysuccess.com/index.php/segment-tree-complete/
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #define lson l,m,rt<<1
    #define rson m+1,r,rt<<1|1
    #define maxn 55000
    using namespace std;
    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)
    {
        int ret=0;
        if(L<=l&&r<=R)
        {
            return sum[rt];
        }
        int m=(l+r)>>1;
        if(L<=m) ret+=query(L,R,lson);
        if(R>m) ret+=query(L,R,rson);
        return ret;
    }
    int main()
    {
        int t;
        scanf("%d",&t);
        for(int cases=1;cases<=t;cases++)
        {
            printf("Case %d:
    ",cases);
            int n;
            scanf("%d",&n);
            build(1,n,1);
            char op[10];
            while(scanf("%s",op))
            {
                if(op[0]=='E') break;
                int a,b;
                scanf("%d%d",&a,&b);
                if(op[0]=='A') update(a,b,1,n,1);
                if(op[0]=='S') update(a,-b,1,n,1);
                if(op[0]=='Q') printf("%d
    ",query(a,b,1,n,1));
            }
        }
        return 0;
    }
    

  • 相关阅读:
    2019年春季第四周作业
    第三周作业
    第二周作业
    最大值及其下标
    查找整数
    PTA3
    币值转换
    三位老师
    自我介绍
    poj 3278 Catch That Cow(bfs)
  • 原文地址:https://www.cnblogs.com/vactor/p/4099986.html
Copyright © 2020-2023  润新知