线段树区间求和+最值

好久没写,今天写了之后竟然还WA。。。

纪念一下

#include <cstdio>
#include <cstring>
#include <vector>
#include <cmath>
#include <stack>
#include <cstdlib>
#include <queue>
#include <map>
#include <iostream>
#include <algorithm>
 
using namespace std;
#define N 200100
 
#define LL long long
 
LL add[N<<2];
LL sum[N<<2];
 
LL MIN[N<<2];
 
void PushUP(int rt)
{
    sum[rt]=sum[rt<<1]+sum[rt<<1|1];
    MIN[rt]=min(MIN[rt<<1],MIN[rt<<1|1]);
}
 
void PushDown(int rt,int m)
{
    if(add[rt])
    {
        add[rt<<1]+=add[rt];
        add[rt<<1|1]+=add[rt];
 
        sum[rt<<1]+=(m-(m>>1))*add[rt];
        sum[rt<<1|1]+=(m>>1)*add[rt];
 
        MIN[rt<<1]+=add[rt];
        MIN[rt<<1|1]+=add[rt];
 
        add[rt]=0;
    }
}
void Build(int l,int r,int rt)
{
    add[rt]=0;
    if(l==r)
    {
        scanf("%lld",&sum[rt]);
        MIN[rt]=sum[rt];
        return;
    }
    int m=(l+r)>>1;
    Build(l,m,rt<<1);
    Build(m+1,r,rt<<1|1);
    PushUP(rt);
}
 
void Build2(int l,int r,int rt)
{
    add[rt]=0;
    if(l==r)
    {
        return;
    }
    int m=(l+r)>>1;
    Build(l,m,rt<<1);
    Build(m+1,r,rt<<1|1);
    PushUP(rt);
}
 
void Update(int L,int R,int c,int l,int r,int rt)
{
    if(L<=l&&R>=r)
    {
        add[rt]+=c;
        sum[rt]+=(LL)c*(r-l+1);
        MIN[rt]+=c;
        return;
    }
    PushDown(rt,r-l+1);
 
    int m=(l+r)>>1;
    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);
}
 
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 m=(l+r)>>1;
    LL ret=0;
    if(L<=m) ret+=Query(L,R,l,m,rt<<1);
    if(R>m) ret+=Query(L,R,m+1,r,rt<<1|1);
    return ret;
}
 
LL Query2(int L,int R,int l,int r,int rt)
{
    if(L<=l&&r<=R)
        return MIN[rt];
    PushDown(rt,r-l+1);
    int m=(r+l)>>1;
    LL ret=0x7f7f7f7f;
    if(L<=m) ret=min(ret,Query2(L,R,l,m,rt<<1));
    if(R>m) ret=min(ret,Query2(L,R,m+1,r,(rt<<1)+1));
    return ret;
}
int main()
{
    int m,n;
    scanf("%d%d",&n,&m);
    Build(1,n,1);
    Build2(1,n,1);
    while(m--)
    {
        char s[5];
        int a,b,c;
        scanf("%s",s);
        if(s[0]=='S')
        {
            scanf("%d%d",&a,&b);
            printf("%lld\n",Query(a,b,1,n,1));
        }
        else if (s[0]=='P')
        {
            scanf("%d%d%d",&a,&b,&c);
            Update(a,b,c,1,n,1);
        }
        else if (s[0]=='M')
        {
            scanf ("%d%d",&a,&b);
            printf("%lld\n",Query2(a,b,1,n,1));
        }
    }
    return 0;
}

 

posted on 2016-08-07 20:09  very_czy  阅读(206)  评论(0编辑  收藏  举报

导航