内存限制:256 MiB 时间限制:1000 ms 标准输入输出
                            题目类型:传统 评测方式:文本比较
                                上传者: 匿名
 

splay模板题

屠龙宝刀点击就送

#include <cstdio>
typedef long long LL;
#define N 300500 LL data[N];
int siz[N],cnt[N],ch[N][],fa[N],root,cn,n;
inline int son(int x) {return ch[fa[x]][]==x;}
inline void pushup(int rt)
{
int l=ch[rt][],r=ch[rt][];
siz[rt]=cnt[rt]+siz[l]+siz[r];
}
inline void rotate(int x)
{
int y=fa[x],z=fa[y],b=son(x),c=son(y),a=ch[x][!b];
if(z) ch[z][c]=x;
else root=x;
fa[x]=z;
if(a) fa[a]=y;
ch[y][b]=a;
ch[x][!b]=y;
fa[y]=x;
pushup(y);
pushup(x);
}
void splay(int x,int i)
{
for(;fa[x]!=i;)
{
int y=fa[x],z=fa[y];
if(z==i) rotate(x);
else
{
if(son(x)==son(y))
{
rotate(y);
rotate(x);
}
else
{
rotate(x);
rotate(x);
}
}
}
}
void ins(int &rt,LL x)
{
if(!rt)
{
rt=++cn;
data[cn]=x;
siz[cn]=cnt[cn]=;
splay(cn,);
return;
}
if(data[rt]==x)
{
cnt[rt]++;
siz[rt]++;
splay(rt,);
return;
}
if(x<data[rt])
{
ins(ch[rt][],x);
fa[ch[rt][]]=rt;
pushup(rt);
}
else
{
ins(ch[rt][],x);
fa[ch[rt][]]=rt;
pushup(rt);
}
}
int getmn(int rt)
{
int p=rt,ans=-;
for(;p;p=ch[p][]) ans=p;
return ans;
}
void del(int rt,LL x)
{
if(data[rt]==x)
{
if(cnt[rt]>)
{
cnt[rt]--;
siz[rt]--;
}
else
{
splay(rt,);
int p=getmn(ch[rt][]);
if(p!=-)
{
splay(p,rt);
root=p;
fa[p]=;
ch[p][]=ch[rt][];
fa[ch[rt][]]=p;
}
else
{
root=ch[rt][];
fa[ch[rt][]]=;
}
}
return;
}
if(x<data[rt])
{
del(ch[rt][],x);
pushup(rt);
}
else
{
del(ch[rt][],x);
pushup(rt);
}
}
int getkth(int rt,int k)
{
int l=ch[rt][];
if(siz[l]+<=k&&k<=siz[l]+cnt[rt]) return rt;
if(siz[l]+>k) return getkth(ch[rt][],k);
else if(k>siz[l]+cnt[rt]) return getkth(ch[rt][],k-(siz[l]+cnt[rt]));
}
int get_suc(int rt,LL x)
{
int p=rt,ret=-;
for(;p;)
{
if(x>=data[p]) p=ch[p][];
else
{
ret=p;
p=ch[p][];
}
}
return ret;
}
int get_pre(int rt,LL x)
{
int p=rt,ret=-;
for(;p;)
{
if(x<=data[p]) p=ch[p][];
else
{
ret=p;
p=ch[p][];
}
}
return ret;
}
int get_pos(int rt,LL x)
{
if(data[rt]==x) return rt;
if(x<data[rt]) return get_pos(ch[rt][],x);
else return get_pos(ch[rt][],x);
}
int Main()
{
scanf("%d",&n);
for(LL opt,x,pos,flag;n--;)
{
scanf("%lld%lld",&opt,&x);
if(!opt) ins(root,x);
else if(opt==) del(root,x);
else if(opt==) printf("%lld\n",data[getkth(root,x)]);
else if(opt==) ins(root,x),pos=get_pos(root,x),splay(pos,),printf("%d\n",siz[ch[root][]]),del(root,x);
else if(opt==) pos=get_pre(root,x),pos==-?printf("-1\n"):printf("%lld\n",data[pos]);
else pos=get_suc(root,x),pos==-?printf("-1\n"):printf("%lld\n",data[pos]);
}
return ;
}
int sb=Main();
int main(int argc,char *argv[]) {;}

LibreOJ #107. 维护全序集的更多相关文章

  1. loj #107. 维护全序集

    #107. 维护全序集 题目描述 这是一道模板题,其数据比「普通平衡树」更强. 如未特别说明,以下所有数据均为整数. 维护一个多重集 S SS ,初始为空,有以下几种操作: 把 x xx 加入 S S ...

  2. 2018.07.24 loj#107. 维护全序集(非旋treap)

    传送门 就是普通平衡树,可以拿来练非旋treap" role="presentation" style="position: relative;"&g ...

  3. LOJ#107. 维护全序集(FHQ Treap)

    题面 传送门 题解 板子,没啥好说的 //minamoto #include<bits/stdc++.h> #define R register #define inline __inli ...

  4. LOJ107. 维护全序集【树状数组维护全序集】

    题目描述 这是一道模板题,其数据比「普通平衡树」更强. 如未特别说明,以下所有数据均为整数. 维护一个多重集 S ,初始为空,有以下几种操作: 把 x 加入 S 删除 S 中的一个 x,保证删除的 x ...

  5. 【GXZ的原创】平衡树性能测试

    本文作者为 GXZlegend ,转载请注明 出处 ,谢谢! 〇.序言 前些日子闲的蛋疼做了个平衡树性能测试... 主要是因为学会的平衡树越来越多,做题时却不知道写哪个... 本想结合效率和代码复杂度 ...

  6. BSA基础数据维护

    平台 BSA基础数据维护 .扇区五个字段的内容 本来值为0,经过107上计算解析,得出正常的数值.然后106上报(200050),得到回复(200051). 查看回复数据,是否有错误.比如提示104 ...

  7. LibreOJ 题解汇总

    目录 #1. A + B Problem #2. Hello, World! #3. Copycat #4. Quine #7. Input Test #100. 矩阵乘法 #101. 最大流 #10 ...

  8. Oracle 11g 物理Dataguard日常操作维护(二)

    Oracle 11g 物理Dataguard日常操作维护(二) 2017年8月25日 14:34 3.3 3.3.1 查看备库进程状态 SYS(125_7)@fpyj123> select pr ...

  9. 102. Binary Tree Level Order Traversal + 103. Binary Tree Zigzag Level Order Traversal + 107. Binary Tree Level Order Traversal II + 637. Average of Levels in Binary Tree

    ▶ 有关将一棵二叉树转化为二位表的题目,一模一样的套路出了四道题 ▶ 第 102 题,简单的转化,[ 3, 9, 20, null, null, 15, 7 ] 转为 [ [ 15, 7 ] , [ ...

随机推荐

  1. PCL中异常处理机制

    博客转载自:http://www.pclcn.org/study/shownews.php?lang=cn&id=287 本节我们主要讨论PCL在编写和应用过程中如何利用PCL的异常机制,提高 ...

  2. 1.14不使用回车键来读取n个字符

    read是一个重要的bash命令,它用于从键盘或标准输入中读取文本.可以使用read以交互的形式读取来自用户的输入,不过read能做的远不止这些.很多编程语言的输入库都是从键盘读取输入,且只有回车键按 ...

  3. LightOJ - 1234 LightOJ - 1245 Harmonic Number(欧拉系数+调和级数)

    Harmonic Number In mathematics, the nth harmonic number is the sum of the reciprocals of the first n ...

  4. python 2 与python 3 区别

    print def print(self, *args, sep=' ', end='\n', file=None): # known special case of print "&quo ...

  5. unity打包iOS上线归纳

    1.去https://developer.apple.com登陆账号去生成打包用的签名文件,生成一个测试用的和一个上线发布用的签名文件 注意:签名文件绑定id必须和应用绑定包命一致,iOSapp唯一性 ...

  6. php 判断手机号运营商

    /* 移动:134.135.136.137.138.139.150.151.157(TD).158.159.187.188 联通:130.131.132.152.155.156.185.186 电信: ...

  7. PHP SOAP 提交XML

    <?php $xmldata = <<<EOT <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap. ...

  8. 洛谷P3646 [APIO2015]巴厘岛的雕塑(数位dp)

    传送门 话说莫非所有位运算都可以用贪心解决么……太珂怕啦…… 一直把或运算看成异或算我傻逼…… 考虑从高位到低位贪心,如果能使答案第$i$位为0那么肯定比不为$0$更优 然后考虑第$i$位是否能为$0 ...

  9. APP携参安装技术怎样帮助APP推广

    APP 如何自动实现携带参数安装?这是许多开发者感兴趣的问题,毕竟在 APP 开发的许多逻辑上常常不可避免的需要判断安装来源,比如:广告投放.用户邀请.用户行为.社交分享等 APP 推广环节,国内的 ...

  10. Vue中如何将数据传递到下一个页面(超级简单哒)

    先展示效果:注意URL中值是有变化的 一:在goodslist.vue文件夹绑定 <router-link :to="'/goodsinfo/'+subitem.artID" ...