[NOI2005] [BZOJ1500] 维修数列 - splay

    前段日子一直在看LCT QWQ。照着板子A了魔法森林但是感觉还是不是太明白,神犇告诉我说应该先把splay学好然后码了几天找了N处错误才A了这题

    splay大模板题啊。虽然程序跑得不很快,但是总算AC了qwq。 注释里面有一些提示,就是我错的地方qwq,提醒大家注意哈。

    

</pre><p><pre name="code" class="cpp">

#include "algorithm"
#include "iostream"
#include "stdlib.h"
#include "stdio.h"
#include "math.h"
using namespace std;

const int inf= (int)1e9;
inline int read(){
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
	return x*f;
}
struct node {
	node *c[2],*fa;
	bool rev; int tag,siz;
	int lmx,rmx,smx,sum,key;
	node(); 
	void push_up();
	void push_down();
	void ins(node *lc,node *rc,node *f,int _k);
} Tnull ,*null=&Tnull, *root=null;

node:: node(){
	c[0]=c[1]=fa=null;
}
void node :: push_up(){  //更新:<span style="color:#ff0000;"><strong>一定注意要先将下一层的标记下传并且算出下一层正确的值!这个错误调了我一整天,到晚上才调出来</strong></span>
	c[0]->push_down(); c[1]->push_down();
    sum=c[0]->sum+c[1]->sum+key;
	siz=c[0]->siz+c[1]->siz+1;
	lmx=rmx=smx=-inf; //此句可省略
	if (c[0]!=null&&c[1]!=null){  //对于左右端点是否为空的更新是<span style="color:#ff0000;">不同</span>的,这个脑补一下就出来了
		lmx=max(c[0]->lmx,c[0]->sum+key+max(c[1]->lmx,0));
		rmx=max(c[1]->rmx,c[1]->sum+key+max(c[0]->rmx,0));
		smx=max(max(c[0]->smx,c[1]->smx),max(c[0]->rmx,0)+max(c[1]->lmx,0)+key);
	} else {
		if (c[0]==null&&c[1]==null){
			lmx=rmx=smx=key;
		} else {
			if (c[0]==null){
				lmx=max(c[1]->lmx,0)+key;
				rmx=max(c[1]->rmx,c[1]->sum+key);
				smx=max(c[1]->smx,max(c[1]->lmx,0)+key);
			} else {
				lmx=max(c[0]->lmx,c[0]->sum+key);
				rmx=max(c[0]->rmx,0)+key;
				smx=max(c[0]->smx,max(c[0]->rmx,0)+key);
			}
		}
	}
}
void node :: push_down(){
	if (tag){  //如果有标记就下传,并算出这一层的答案
		if(c[0]!=null){ 
			c[0]->tag=1; c[0]->key=key; c[0]->sum=key*c[0]->siz;
			c[0]->lmx=c[0]->rmx=c[0]->smx=max(key,key*c[0]->siz);
		}
		if(c[1]!=null){ 
			c[1]->tag=1; c[1]->key=key; c[1]->sum=key*c[1]->siz;
			c[1]->lmx=c[1]->rmx=c[1]->smx=max(key,key*c[1]->siz);
		}
		tag=0;
	}
	if (rev){ rev=0;  //区间翻转,一定记住<span style="color:#ff0000;">翻转最大值!</span>
		if(c[0]!=null) c[0]->rev^=1;
		if(c[1]!=null) c[1]->rev^=1;
		swap(c[0],c[1]); swap(lmx,rmx);
	}
}
void node :: ins (node *lc,node *rc,node *f,int _k){ //初始化
	c[0]=lc; c[1]=rc; fa=f;
	key=lmx=rmx=smx=_k;
	push_up(); tag=rev=0;
}

node * build (int *x,int l){   //建立插入的新数所组成的splay tree,返回根节点
	if (l<=0) return null;
	int mid=(l+1)>>1;
	node * d=new node();
	node *c0=build(x,mid-1);
	node *c1=build(x+mid,l-mid);
	if (c0!=null) c0->fa=d;
	if (c1!=null) c1->fa=d;
	d->ins(c0,c1,null,x[mid]);
	return d;
}

node * find_rank (int rank,node *x){  //找到从x结点开始的第rank位置的数,并返回下标。每访问一个结点,都要下传标记。
	x->push_down(); node* rk;
	if (x->c[0]->siz+1==rank) return x;
	if (x->c[0]->siz>=rank) rk=find_rank(rank,x->c[0]);
	else rk=find_rank(rank-x->c[0]->siz-1,x->c[1]);
	x->push_up(); return rk;
}

void rotate (node *x,node *& f){  //将x向f旋转一层,<span style="color:#ff0000;">记住,当父节点就是f时记得修改。</span>
	node *y=x->fa,*z=y->fa; int l,r;
	if (y->c[0]==x) l=0; else l=1; r=l^1;
	if (y==f) f=x;
	if (z!=null){
		if(z->c[0]==y) z->c[0]=x;
		else z->c[1]=x;
	}
	x->fa=z; y->fa=x;
    if(x->c[r]!=null) x->c[r]->fa=y;
	y->c[l]=x->c[r]; x->c[r]=y;
	y->push_up(); x->push_up();
}


void splay (node * x, node * & f){
    while (x!=f){
		node *y=x->fa,*z=y->fa; 
		if (y!=f){
			if (z->c[0]==y ^ y->c[0]==x) rotate(x,f);
			else rotate(y,f);
		}
		rotate(x,f);
	}
	if(f->fa!=null) f->fa->push_up();
}


void insert (int pos,int *x,int l){
	node * q=find_rank(pos,root);
	node * qq=find_rank(pos+1,root);
    splay (q,root); splay(qq,root->c[1]);
	root->c[1]->c[0]=build(x,l); root->c[1]->c[0]->fa=root->c[1];
    root->c[1]->push_up(); root->push_up();
}


void deleteit (node * x){
	if (x->c[0]!=null) deleteit(x->c[0]);
	if (x->c[1]!=null) deleteit(x->c[1]);
	delete x;
}


void del (int pos,int tot){
	node * q=find_rank(pos-1,root);
	node * qq=find_rank(pos+tot-1,root);
    splay (q,root); splay (qq,root->c[1]);
	node * freeit=root->c[1]; root->c[1]=root->c[1]->c[1];
	root->c[1]->fa=root; freeit->c[1]=null; deleteit(freeit); 
	root->push_up();
}


void make_same (int pos,int tot,int v){
	node * q=find_rank(pos-1,root);
	node * qq=find_rank(pos+tot,root);
    splay (q,root); splay (qq,root->c[1]);
	node * t=root->c[1]->c[0]; t->tag=1; t->key=v; t->sum=v*t->siz;
	t->lmx=t->rmx=t->smx=max(v,v*t->siz); t->push_down();
	root->c[1]->push_up(); root->push_up();
}


void reverse(int pos,int tot){
	node * q=find_rank(pos-1,root);
	node * qq=find_rank(pos+tot,root);
    splay (q,root); splay (qq,root->c[1]);
	node * t=root->c[1]->c[0]; t->rev^=1; t->push_down();
	t->fa->push_up(); t->fa->fa->push_up();
}


int querysum(int pos,int tot){
	node * q=find_rank(pos-1,root);
	node * qq=find_rank(pos+tot,root);
    splay (q,root); splay (qq,root->c[1]);
	return root->c[1]->c[0]->sum;
}
int maxsum(){ 
    node * q=find_rank(1,root);
	node * qq=find_rank(root->siz,root);
    splay (q,root); splay (qq,root->c[1]);
	return root->c[1]->c[0]->smx;
}
const int N=4000005; int n,m,data[N];


int main(){
	n=read(),m=read(); int i,pos,tot,j;
	for (i=1;i<=n;i++) data[i]=read();
	root=build(data-1,n+2);
	for (i=1;i<=m;i++) {
		char ord[15]; scanf("%s",ord);
		if (ord[2]!='X'){pos=read()+1; tot=read();}
		if (ord[2]=='S'){
			for (j=1;j<=tot;j++) data[j]=read();
			insert(pos,data,tot);
		} else {
			if (ord[2]=='L') del(pos,tot); else
			if (ord[2]=='K'){
				j=read();
				make_same(pos,tot,j);
			} else
			if (ord[2]=='V') reverse(pos,tot); else
			if (ord[2]=='T') printf("%d\n",querysum(pos,tot));
			else printf("%d\n",maxsum());
		}
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值