解题关键:splay模板题整理。

如何不加入极大极小值?(待思考)

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>
#include<iostream>
#include<cstdlib>
using namespace std;
typedef long long ll;
const int N = ;
int ch[N][],par[N],val[N],cnt[N],size[N],ncnt,root; bool chk(int x){
return ch[par[x]][]==x;
} void pushup(int x){
size[x]=size[ch[x][]]+size[ch[x][]]+cnt[x];//和线段树不同的是需要+上自身的cnt
} void rotate(int x){
int y=par[x],z=par[y],k=chk(x),w=ch[x][k^];
ch[y][k]=w;par[w]=y;
ch[z][chk(y)]=x;par[x]=z;
ch[x][k^]=y;par[y]=x;
pushup(y);pushup(x);
} void splay(int x,int goal=){
while(par[x]!=goal){
int y=par[x],z=par[y];
if(z!=goal){
if(chk(x)==chk(y)) rotate(y);
else rotate(x);
}
rotate(x);
}
if(!goal) root=x;
} void insert(int x){
int cur=root,p=;
while(cur&&val[cur]!=x){
p=cur;
cur=ch[cur][x>val[cur]];
}
if(cur){
cnt[cur]++;
}else{
cur=++ncnt;
if(p) ch[p][x>val[p]]=cur;
ch[cur][]=ch[cur][]=;
par[cur]=p;val[cur]=x;
cnt[cur]=size[cur]=;
}
splay(cur);
} void find(int x){
int cur=root;
if(!cur) return;
while(ch[cur][x>val[cur]]&&x!=val[cur]){
cur=ch[cur][x>val[cur]];
}
splay(cur);
}
//从0开始
int kth(int k){
k++;
int cur=root;
while(){
if(ch[cur][]&&k<=size[ch[cur][]]){
cur=ch[cur][];
}else if(k>size[ch[cur][]]+cnt[cur]){
k-=size[ch[cur][]]+cnt[cur];
cur=ch[cur][];
}else{
return cur;
}
}
} int rnk(int x){
find(x);
if(val[root]>=x) return size[ch[root][]];
else return size[ch[root][]]+cnt[root];
} int pre(int x){
find(x);
if(val[root]<x) return root;
int cur=ch[root][];
while(ch[cur][]) cur=ch[cur][];
return cur;
} int succ(int x) {
find(x);
if(val[root]>x) return root;
int cur=ch[root][];
while(ch[cur][]) cur=ch[cur][];
return cur;
} void remove(int x) {
int last=pre(x),nxt=succ(x);
splay(last);splay(nxt,last);
int del=ch[nxt][];
if(cnt[del]>){
cnt[del]--;
splay(del);
}
else ch[nxt][]=;
} void init(){
insert(-2e9);
insert(2e9);
} int n,op,x; int main() {
scanf("%d",&n);
init();
while(n--){
scanf("%d%d",&op,&x);
switch(op){
case : insert(x); break;
case : remove(x); break;
case : printf("%d\n",rnk(x)); break;
case : printf("%d\n",val[kth(x)]); break;
case : printf("%d\n",val[pre(x)]); break;
case : printf("%d\n",val[succ(x)]); break;
}
}
}

最新文章

  1. 【转】使用Reflector和FileDisassembler反编译成项目文件
  2. 本博客停止更新,移至purecpp.org
  3. 软件测试之黑盒测试:打着手电寻找bug
  4. Delphi 之前解析串口数据
  5. weblogic服务器内存溢出问题解决
  6. Libnids---编写网络应用程序的利器
  7. delphi 简单的删除字符串尾部数字的代码
  8. 搭建一个三台服务器的Memcached集群
  9. .net 中HttpClient 携带cookie传输
  10. Ionic3 打包并签名Android-App
  11. C#中++i与i++的区别
  12. 微信小程序中用户登录和登录态维护
  13. javascript/ajax和php 进阶 之 项目实战
  14. GIL锁
  15. VS F5不编译 F5总是重新编译
  16. 第二章 flex输入输出
  17. Implementing a CNN for Text Classification in TensorFlow
  18. SS、SP、BP寄存器
  19. Linux环境SVN命令行使用经验总结(转)
  20. 每个Android开发者必须知道的内存管理知识

热门文章

  1. css3: scrollLeft,scrollWidth,clientWidth,offsetWidth 的区别
  2. Mybatis为实体类定义别名typeAliases
  3. MS SQL Server2000转换成MySQL
  4. HDU - 6185 :Covering(矩阵乘法&amp;状态压缩)
  5. ACM学习历程—Codeforces Round #354 (Div. 2)
  6. 洛谷 P1292 倒酒
  7. 对Servlet规范的蜻蜓点水
  8. jslinq 使用总结
  9. An invalid form control with name=&#39;timeone[]&#39; is not focusable.
  10. nextSibling VS nextElementSibling