bzoj 3224 平衡树(splay)模板

bzoj 3224

  1. 插入x数
  2. 删除x数(若有多个相同的数,因只删除一个)
  3. 查询x数的排名(若有多个相同的数,因输出最小的排名)
  4. 查询排名为x的数
  5. 求x的前驱(前驱定义为小于x,且最大的数)
  6. 求x的后继(后继定义为大于x,且最小的数)

#include
#include
#include
using namespace std;
#define MAXN 1000000
int ch[MAXN][2],f[MAXN],size[MAXN],cnt[MAXN],key[MAXN];
int sz,root;
inline void clear(int x){
     //将当前点的各项值都清0(用于删除之后)
	ch[x][0]=ch[x][1]=f[x]=size[x]=cnt[x]=key[x]=0;
}
inline bool get(int x){
     //判断当前点是它父结点的左儿子还是右儿子
	return ch[f[x]][1]==x;
}
inline void update(int x){
     //更新当前点的size值(用于发生修改之后)
	if (x){
     
		size[x]=cnt[x];
		if (ch[x][0]) size[x]+=size[ch[x][0]];
		if (ch[x][1]) size[x]+=size[ch[x][1]];
	}
}
inline void rotate(int x){
     
	int old=f[x],oldf=f[old],whichx=get(x);
	ch[old][whichx]=ch[x][whichx^1]; f[ch[old][whichx]]=old;
	ch[x][whichx^1]=old; f[old]=x;
	f[x]=oldf;
	if (oldf)
		ch[oldf][ch[oldf][1]==old]=x;
	update(old); update(x);
}
inline void splay(int x){
     //不停的rotate,直到根节点 
	for (int fa;fa=f[x];rotate(x))
	  if (f[fa])
	    rotate((get(x)==get(fa))?fa:x);
	root=x;
}
inline void insert(int x){
     
	if (root==0){
     sz++; ch[sz][0]=ch[sz][1]=f[sz]=0; root=sz; size[sz]=cnt[sz]=1; key[sz]=x; return;}
	int now=root,fa=0;
	while(1){
     
		if (x==key[now]){
     
			cnt[now]++; update(now); update(fa); splay(now); break;
		}
		fa=now;
		now=ch[now][key[now]<x];
		if (now==0){
     
			sz++;
			ch[sz][0]=ch[sz][1]=0;
			f[sz]=fa;
			size[sz]=cnt[sz]=1;
			ch[fa][key[fa]<x]=sz;
			key[sz]=x;
			update(fa);
			splay(sz);
			break;
		}
	}
}
inline int find(int x){
     //查询x的排名
	int now=root,ans=0;
	while(1){
     
		if (x<key[now])
		  now=ch[now][0];
		else{
     
			ans+=(ch[now][0]?size[ch[now][0]]:0);
			if (x==key[now]){
     
				splay(now); return ans+1;
			}
			ans+=cnt[now];
			now=ch[now][1];
		}
	}
}
inline int findx(int x){
     //找到排名为x的点
	int now=root;
	while(1){
     
		if (ch[now][0]&&x<=size[ch[now][0]])
		  now=ch[now][0];
		else{
     
			int temp=(ch[now][0]?size[ch[now][0]]:0)+cnt[now];
			if (x<=temp) return key[now];
			x-=temp; now=ch[now][1];
		}
	}
}
inline int pre(){
     //先插入x,找到左子树最右边节点
	int now=ch[root][0];
	while (ch[now][1]) now=ch[now][1];
	return now;
}
inline int next(){
     //插入x,找到右子树最左边节点
	int now=ch[root][1];
	while (ch[now][0]) now=ch[now][0];
	return now;
}
inline void del(int x){
     
	int whatever=find(x);
	if (cnt[root]>1){
     cnt[root]--; update(root); return;}
	if (!ch[root][0]&&!ch[root][1]) {
     clear(root); root=0; return;}
	if (!ch[root][0]){
     
		int oldroot=root; root=ch[root][1]; f[root]=0; clear(oldroot); return;
	}
	else if (!ch[root][1]){
     
		int oldroot=root; root=ch[root][0]; f[root]=0; clear(oldroot); return;
	}
	int leftbig=pre(),oldroot=root;
	splay(leftbig);
	ch[root][1]=ch[oldroot][1];
	f[ch[oldroot][1]]=root;
	clear(oldroot);
	update(root); 
}
int main(){
     
	int n,opt,x;
	scanf("%d",&n);
	for (int i=1;i<=n;++i){
     
		scanf("%d%d",&opt,&x);
		switch(opt){
     
			case 1: insert(x); break;
			case 2: del(x); break;
			case 3: printf("%d\n",find(x)); break;
			case 4: printf("%d\n",findx(x)); break;
			case 5: insert(x); printf("%d\n",key[pre()]); del(x); break;
			case 6: insert(x); printf("%d\n",key[next()]); del(x); break;
		}
	}
}

你可能感兴趣的:(模板,平衡树)