这道题可以用LCT做,开set,LCT,二叉树

  • 操作1:直接开set,找到它要插入的位置,一定是前驱,后缀中deep最大的(显然手玩
  • 操作2:set+LCT询问路径,直接手动提上去,因为树的形态不变
  • 操作3:同2
  • 操作4:LCT::Cut,手动删除
  • 操作5:同4
  • 没了
  • 记得手动更新二叉树(这个一定要想清楚会又WA又TLE又RE n遍

# include <bits/stdc++.h>
# define RG register
# define IL inline
# define Fill(a, b) memset(a, b, sizeof(a))
using namespace std;
typedef long long ll;
const int _(1e5 + 10); IL ll Read(){
char c = '%'; ll x = 0, z = 1;
for(; c > '9' || c < '0'; c = getchar()) if(c == '-') z = -1;
for(; c >= '0' && c <= '9'; c = getchar()) x = x * 10 + c - '0';
return x * z;
} int fa[_], ch[2][_], rev[_], S[_], sz[_], qc[_], qx[_], o[_], rt, spc[2][_], spf[_];
set <int> T;
set <int> :: iterator it; IL bool Son(RG int x){ return ch[1][fa[x]] == x; } IL bool Isroot(RG int x){ return ch[0][fa[x]] != x && ch[1][fa[x]] != x; } IL void Update(RG int x){ sz[x] = sz[ch[0][x]] + sz[ch[1][x]] + 1; } IL void Reverse(RG int x){ swap(ch[0][x], ch[1][x]); rev[x] ^= 1; } IL void Pushdown(RG int x){ if(!rev[x]) return; Reverse(ch[0][x]); Reverse(ch[1][x]); rev[x] = 0; } IL void Rotate(RG int x){
RG int y = fa[x], z = fa[y], c = Son(x);
if(!Isroot(y)) ch[Son(y)][z] = x; fa[x] = z;
ch[c][y] = ch[!c][x]; fa[ch[c][y]] = y;
ch[!c][x] = y; fa[y] = x;
Update(y);
} IL void Splay(RG int x){
S[++S[0]] = x;
for(RG int y = x; !Isroot(y); y = fa[y]) S[++S[0]] = fa[y];
while(S[0]) Pushdown(S[S[0]--]);
for(RG int y = fa[x]; !Isroot(x); Rotate(x), y = fa[x])
if(!Isroot(y)) Son(x) ^ Son(y) ? Rotate(x) : Rotate(y);
Update(x);
} IL void Access(RG int x){ for(RG int y = 0; x; y = x, x = fa[x]) Splay(x), ch[1][x] = y, Update(x); } IL int Findroot(RG int x){ Access(x); Splay(x); while(ch[0][x]) x = ch[0][x]; return x; } IL void Makeroot(RG int x){ Access(x); Splay(x); Reverse(x); } IL void Split(RG int x, RG int y){ Makeroot(x); Access(y); Splay(y); } IL void Link(RG int x, RG int y){ if(!x || !y) return; Makeroot(x); fa[x] = y; } IL void Cut(RG int x, RG int y){ if(!x || !y) return; Split(x, y); ch[0][y] = fa[x] = 0; } IL int Query(RG int x){ Makeroot(rt); Access(x); Splay(x); return sz[x]; } int main(RG int argc, RG char *argv[]){
RG int len = 0, m = Read();
T.insert(-2e9); T.insert(2e9);
for(RG int i = 1; i <= m; ++i){
qc[i] = Read();
if(qc[i] == 1) o[++len] = qx[i] = Read();
}
sort(o + 1, o + len + 1);
for(RG int i = 1; i <= m; ++i)
if(qc[i] == 1) qx[i] = lower_bound(o + 1, o + len + 1, qx[i]) - o;
for(RG int i = 1; i <= m; ++i){
if(qc[i] != 1 && T.size() == 3){
puts("1"); it = T.begin(); ++it;
if(qc[i] >= 3) T.erase(it), rt = 0;
continue;
}
if(qc[i] == 1){
if(T.size() == 2){ T.insert(qx[i]); rt = qx[i]; puts("1"); continue; }
it = T.lower_bound(qx[i]); RG int ans = 0, pos, g;
if(*it != 2e9){ g = Query(*it); if(g > ans) ans = g, pos = *it; }
if(*(--it) != -2e9){ g = Query(*it); if(g > ans) ans = g, pos = *it; }
T.insert(qx[i]); Link(qx[i], pos);
spc[qx[i] > pos][pos] = qx[i]; spf[qx[i]] = pos;
printf("%d\n", ans + 1);
}
else if(qc[i] == 2){
it = T.begin(); ++it;
RG int x = *it, y = spc[1][x], z = spf[x];
printf("%d\n", Query(x));
if(rt != x){
Cut(x, z); Cut(x, y); Link(x, rt); Link(y, z);
spf[rt] = x; spf[x] = 0; spf[y] = z; spc[1][x] = rt; rt = x; spc[0][z] = y;
}
}
else if(qc[i] == 3){
it = T.end(); --it; --it;
RG int x = *it, y = spc[0][x], z = spf[x];
printf("%d\n", Query(x));
if(rt != x){
Cut(x, z); Cut(x, y); Link(x, rt); Link(y, z);
spf[rt] = x; spf[x] = 0; spf[y] = z; spc[0][x] = rt; rt = x; spc[1][z] = y;
}
}
else if(qc[i] == 4){
it = T.begin(); ++it;
RG int x = *it, y = spc[1][x], z = spf[x];
T.erase(it);
printf("%d\n", Query(x));
Cut(x, z); Cut(x, y); Link(y, z);
spf[y] = z; spc[0][x] = spc[1][x] = spf[x] = 0; spc[0][z] = y;
if(rt == x) rt = y;
}
else if(qc[i] == 5){
it = T.end(); --it; --it;
RG int x = *it, y = spc[0][x], z = spf[x];
T.erase(it);
printf("%d\n", Query(x));
Cut(x, z); Cut(x, y); Link(y, z);
spf[y] = z; spc[0][x] = spc[1][x] = spf[x] = 0; spc[1][z] = y;
if(rt == x) rt = y;
}
}
return 0;
}

[AH/HNOI2017]单旋的更多相关文章

  1. bzoj 4825: [Hnoi2017]单旋 [lct]

    4825: [Hnoi2017]单旋 题意:有趣的spaly hnoi2017刚出来我就去做,当时这题作死用了ett,调了5节课没做出来然后发现好像直接用lct就行了然后弃掉了... md用lct不知 ...

  2. 【LG3721】[HNOI2017]单旋

    [LG3721][HNOI2017]单旋 题面 洛谷 题解 20pts 直接模拟\(spaly\)的过程即可. 100pts 可以发现单旋最大.最小值到根,手玩是有显然规律的,发现只需要几次\(lin ...

  3. 4825: [Hnoi2017]单旋

    4825: [Hnoi2017]单旋 链接 分析: 以后采取更保险的方式写代码!!!81行本来以为不特判也可以,然后就总是比答案大1,甚至出现负数,调啊调啊调啊调~~~ 只会旋转最大值和最小值,以最小 ...

  4. [BZOJ4825][HNOI2017]单旋(线段树+Splay)

    4825: [Hnoi2017]单旋 Time Limit: 10 Sec  Memory Limit: 256 MBSubmit: 667  Solved: 342[Submit][Status][ ...

  5. 【BZOJ4825】[Hnoi2017]单旋 线段树+set

    [BZOJ4825][Hnoi2017]单旋 Description H 国是一个热爱写代码的国家,那里的人们很小去学校学习写各种各样的数据结构.伸展树(splay)是一种数据结构,因为代码好写,功能 ...

  6. bzoj4825 [Hnoi2017]单旋

    Description H 国是一个热爱写代码的国家,那里的人们很小去学校学习写各种各样的数据结构.伸展树(splay)是一种数据结构,因为代码好写,功能多,效率高,掌握这种数据结构成为了 H 国的必 ...

  7. BZOJ:4825: [Hnoi2017]单旋

    Description H 国是一个热爱写代码的国家,那里的人们很小去学校学习写各种各样的数据结构.伸展树(splay)是一种数据结构,因为代码好写,功能多,效率高,掌握这种数据结构成为了 H 国的必 ...

  8. HNOI2017 单旋

    题目描述 网址:https://www.luogu.org/problemnew/show/3721 大意: 有一颗单旋Splay(Spaly),以key值为优先度,总共有5个操作. [1] 插入一个 ...

  9. HNOI2017单旋

    单旋 这道题做法贼多,LCT,splay,线段树什么的貌似都行. 像我这种渣渣只会线段树了(高级数据结构学了也不会用). 首先离线所有操作,因为不会有两个点值重复,所以直接离散. 一颗线段树来维护所有 ...

随机推荐

  1. ORACLE数据库SQL优化 not in 与not exits

    各个表的数据量: sys_file_convert_queue 65989sys_att_file 73061sys_att_main 84405sys_att_rtf_data 1507 优化前,执 ...

  2. maven排除jar包冲突

    首先查看mvn中冲突的包 使用命令:mvn dependency:tree -Dverbose | grep "omitted for conflict with" windows ...

  3. Java经典编程题50道之二十九

    求一个3*3矩阵对角线元素之和. public class Example29 {    public static void main(String[] args) {        int[][] ...

  4. PowerDesigner 简单应用(转载)

    PowerDesigner是一款功能非常强大的建模工具软件,足以与Rose比肩,同样是当今最著名的建模软件之一.Rose是专攻UML对象模型的建模工具,之后才向数据库建模发展,而PowerDesign ...

  5. [翻译] 编写高性能 .NET 代码--第二章 GC -- 减少分配率, 最重要的规则,缩短对象的生命周期,减少对象层次的深度,减少对象之间的引用,避免钉住对象(Pinning)

    减少分配率 这个几乎不用解释,减少了内存的使用量,自然就减少GC回收时的压力,同时降低了内存碎片与CPU的使用量.你可以用一些方法来达到这一目的,但它可能会与其它设计相冲突. 你需要在设计对象时仔细检 ...

  6. bzoj 1188 [HNOI2007]分裂游戏 SG函数 SG定理

    [HNOI2007]分裂游戏 Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1394  Solved: 847[Submit][Status][Dis ...

  7. 配置nginx服务器 —— Nginx添加多个二级子域名

    1.安装nginx centos/linux下的安装Nginx 2.安装好后进入Nginx目录中 在conf目录下建立一个vhost(ps:名字自己设定)文件夹 其中的$NGINXHOME为你的ngi ...

  8. web1 - HTML&CSS

    Brackets 编辑器的安装和使用 Emmet:HTML/CSS代码快速编写 HTML && CSS

  9. No new migrations found. Your system is up-to-date.处理

    显然是migrations表中存储的相关操作记录了,删除就好了!!!

  10. Mybatis认识

    MyBatis 本是apache的一个开源项目iBatis, 2010年这个项目由apache software foundation 迁移到了google code,并且改名为MyBatis .iB ...