数据结构 线段树模板

Posted tokisaki-kurumi-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构 线段树模板相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#define CLR(a,b) memset(a,b,sizeof(a))
using namespace std;
#define maxn 50010
int Sum[maxn<<2],Add[maxn<<2];
int n,A[maxn];

void PushUp(int rt)
{
    Sum[rt] = Sum[rt<<1] + Sum[rt<<1|1];
}

void Build(int l,int r,int rt)
{
    if( r == l ){
        Sum[rt] = A[l];
        return ;
    }
    int m = (r+l)>>1;

    Build(l,m,rt<<1);
    Build(m+1,r,rt<<1|1);

    PushUp(rt);
}

void PushDown(int rt,int ln,int rn)
{
    if(Add[rt]){
        Add[rt>>1] += Add[rt];
        Add[rt>>1|1] += Add[rt];

        Sum[rt>>1] += Add[rt]*ln;
        Sum[rt>>1|1] += Add[rt]*rn;
    }
    Add[rt] = 0;
}

void Update(int L,int R,int c,int l,int r,int rt)
{
    if( l >= L && r <= R ){
        Sum[rt] += c*(r-l+1);
        Add[rt] += c;
        return ;
    }
    int m = (r+l)>>1;
    PushDown(rt,m-l+1,r-m);

    if(L<=m) Update(L,R,c,l,m,rt<<1);
    if(R>m)  Update(L,R,c,m+1,r,rt<<1|1);
    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;
    PushDown(rt,m-l+1,r-m);

    int Ans = 0;
    if(L<=m) Ans += Query(L,R,l,m,rt<<1);
    if(R> m) Ans += Query(L,R,m+1,r,rt<<1|1);
    return Ans;
}

int main()
{
    int n,m,k=0;
    cin>>n;
    while(n--){
        cout<<"Case "<<++k<<":"<<endl;
        cin>>m;
        for(int i=1;i<=m;i++)
            scanf("%d",&A[i]);
        Build(1,m,1);

        char a[10],ch;
        int b,c;

        while(scanf("%c%s",&ch,a)!=EOF){
            if(a[0] == ‘E‘)
                break;
            scanf("%d%d",&b,&c);

            if(a[0] == ‘Q‘){
                cout<<Query(b,c,1,m,1)<<endl;
            }

            if(a[0] == ‘A‘){
                Update(b,b,c,1,m,1);
            }

            if(a[0] == ‘S‘){
                Update(b,b,c*-1,1,m,1);
            }
        }


        CLR(Sum,0);
        CLR(Add,0);
    }
    return 0;
}

以上是关于数据结构 线段树模板的主要内容,如果未能解决你的问题,请参考以下文章

算法模板——线段树

算法模板-线段树

线段树模板总结

数据结构 线段树模板

模板 - 数据结构 - 线段树(单点修改)

算法模板-线段树