码迷,mamicode.com
首页 > 其他好文 > 详细

HFUUOJ1024 动态开点线段树+标记永久化

时间:2019-09-12 09:36:33      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:png   ++   turn   define   names   amp   load   cin   false   

题意

技术图片

分析

动态加点线段树,标记永久化好写常数小

Code

#include<bits/stdc++.h>
#define fi first
#define se second
#define lson l,mid,p<<1
#define rson mid+1,r,p<<1|1
#define pb push_back
#define ll long long
using namespace std;
const ll inf=1e18;
const int mod=1e9+7;
const int maxn=1e7+10;
int n,m;
ll tr[maxn];
int ls[maxn],rs[maxn],tag[maxn],tot;
int rt;
void up(ll x,ll y,ll l,ll r,int &p,ll k){
    tr[++tot]=(tr[p]+(y-x+1)%mod*k%mod)%mod;
    ls[tot]=ls[p],rs[tot]=rs[p],tag[tot]=tag[p],p=tot;
    if(x==l&&y==r){
        tag[p]=(tag[p]+k)%mod;
        return;
    }ll mid=l+r>>1;
    if(y<=mid) up(x,y,l,mid,ls[p],k);
    else if(x>mid) up(x,y,mid+1,r,rs[p],k);
    else up(x,mid,l,mid,ls[p],k),up(mid+1,y,mid+1,r,rs[p],k);
}
ll qy(ll x,ll y,ll l,ll r,int p,ll k){
    if(x==l&&y==r){
        return (tr[p]+(y-x+1)%mod*k%mod)%mod;
    }ll mid=l+r>>1;
    if(y<=mid) return qy(x,y,l,mid,ls[p],(k+tag[p])%mod);
    else if(x>mid) return qy(x,y,mid+1,r,rs[p],(k+tag[p])%mod);
    else return (qy(x,mid,l,mid,ls[p],(k+tag[p])%mod)+qy(mid+1,y,mid+1,r,rs[p],(k+tag[p])%mod))%mod;
}
int main(){
    //ios::sync_with_stdio(false);
    //freopen("in","r",stdin);
    cin>>m;
    for(int i=1,op;i<=m;i++){
        ll x,l,r;scanf("%d%lld%lld",&op,&l,&r);
        if(op==1){
            scanf("%lld",&x);
            x%=mod;
            up(l,r,1,inf,rt,x);
        }else{
            printf("%lld\n",qy(l,r,1,inf,rt,0));
        }
    }
    return 0;
}

HFUUOJ1024 动态开点线段树+标记永久化

标签:png   ++   turn   define   names   amp   load   cin   false   

原文地址:https://www.cnblogs.com/xyq0220/p/11509716.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!