这题难道不是spaly裸题吗?

言归正传QWQ

一看到这个题目,其实第一反应是很懵X的

从来没有见过类似的题目啊,什么\(spaly\),单旋。QWQ很懵逼啊

不过,我们可以注意到这么一件事情,就是我们对于树中元素移动的时候,只会移动\(min或者max\)。

那么会不会有什么性质呢

QWQ

经过手玩,以\(max\)为栗,我们可以发现我们将这个点单旋到根的话,相当于就是说保持的原树的形态不变,把\(max\)的左儿子连到\(max\)的父亲,然后删除这个点,然后把\(root\)接到\(max\)的左儿子上。

最小值和最大值同理

这不就是一个\(link\)和一个\(cut\)吗QWQ

所以直接可以上\(LCT\)

每次代价,就是从当前点到根的距离

我们现在考虑怎么插入

有一个结论是,插入的时候一定会插到前驱和后继中深度比较大的那个的对应儿子。

因为因为前驱和后继一定是父子关系,只有深的那个才可能出现合法位置的空儿子

QWQ另外的话就是一些细节了

需要除了\(LCT\)之外,再维护原树的形态和\(fa\)的两个数组

然后实时维护一个\(root\),表示原树的根。每次操作完都\(makeroot\),便于计算路径长度

剩下的还是直接去看代码吧

QWQ

感觉这个题很好啊,思维挺不错的

细节也有不少

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<cstring>
  5. #include<cmath>
  6. #include<queue>
  7. #include<map>
  8. #include<set>
  9. #define mk makr_pair
  10. #define ll long long
  11. using namespace std;
  12. inline int read()
  13. {
  14. int x=0,f=1;char ch=getchar();
  15. while (!isdigit(ch)) {if (ch=='-') f=-1;ch=getchar();}
  16. while (isdigit(ch)) {x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}
  17. return x*f;
  18. }
  19. const int maxn = 3e5+1e2;
  20. struct Node
  21. {
  22. int opt,val;
  23. };
  24. Node a[maxn];
  25. int ch[maxn][3];//LCT中的父子关系
  26. int fa[maxn];
  27. int zuzong[maxn];//spaly中的父子关系
  28. int son[maxn][3];
  29. int n,m;
  30. int rev[maxn],st[maxn],size[maxn];
  31. set<int> s;
  32. int b[maxn];
  33. int cnt;
  34. int root;
  35. int sson(int x)
  36. {
  37. if (ch[fa[x]][0]==x) return 0;
  38. else return 1;
  39. }
  40. bool notroot(int x)
  41. {
  42. return ch[fa[x]][0]==x || ch[fa[x]][1]==x;
  43. }
  44. void update(int x)
  45. {
  46. if (!x) return;
  47. size[x]=size[ch[x][0]]+size[ch[x][1]]+1;
  48. }
  49. void reverse(int x)
  50. {
  51. swap(ch[x][0],ch[x][1]);
  52. rev[x]^=1;
  53. }
  54. void pushdown(int x)
  55. {
  56. if(rev[x])
  57. {
  58. if (ch[x][0]) reverse(ch[x][0]);
  59. if (ch[x][1]) reverse(ch[x][1]);
  60. rev[x]=0;
  61. }
  62. }
  63. void rotate(int x)
  64. {
  65. int y=fa[x],z=fa[y];
  66. int b=sson(x),c=sson(y);
  67. if (notroot(y)) ch[z][c]=x;
  68. fa[x]=z;
  69. ch[y][b]=ch[x][!b];
  70. fa[ch[x][!b]]=y;
  71. ch[x][!b]=y;
  72. fa[y]=x;
  73. update(y);
  74. update(x);
  75. }
  76. void splay(int x)
  77. {
  78. int y=x,cnt=0;
  79. st[++cnt]=y;
  80. while (notroot(y)) y=fa[y],st[++cnt]=y;
  81. while (cnt) pushdown(st[cnt--]);
  82. while (notroot(x))
  83. {
  84. int y=fa[x],z=fa[y];
  85. int b=sson(x),c=sson(y);
  86. if (notroot(y))
  87. {
  88. if(b==c) rotate(y);
  89. else rotate(x);
  90. }
  91. rotate(x);
  92. //cout<<x<<endl;
  93. }
  94. update(x);
  95. }
  96. void access(int x)
  97. {
  98. for (int y=0;x;y=x,x=fa[x])
  99. {
  100. splay(x);
  101. ch[x][1]=y;
  102. update(x);
  103. }
  104. }
  105. void makeroot(int x)
  106. {
  107. access(x);
  108. splay(x);
  109. reverse(x);
  110. }
  111. int findroot(int x)
  112. {
  113. access(x);
  114. splay(x);
  115. while (ch[x][0])
  116. {
  117. pushdown(x);
  118. x=ch[x][0];
  119. }
  120. return x;
  121. }
  122. void split(int x,int y)
  123. {
  124. makeroot(x);
  125. access(y);
  126. splay(y);
  127. }
  128. void link(int x,int y)
  129. {
  130. if (!x || !y) return;
  131. makeroot(x);
  132. if (findroot(y)!=x)
  133. fa[x]=y;
  134. }
  135. void cut(int x,int y)
  136. {
  137. if (!x || !y) return;
  138. split(x,y);
  139. if (ch[x][0] || ch[x][1] || fa[x]!=y || ch[y][1]) return;
  140. fa[x]=ch[y][0]=0;
  141. update(y);
  142. }
  143. int query(int x)
  144. {
  145. access(x);
  146. splay(x);
  147. return size[x];
  148. }
  149. int main()
  150. {
  151. n=read();
  152. for (int i=1;i<=n;i++)
  153. {
  154. a[i].opt=read();
  155. if (a[i].opt==1) a[i].val=read(),b[++cnt]=a[i].val;
  156. }
  157. sort(b+1,b+1+cnt);
  158. for (int i=1;i<=n;i++)
  159. if(a[i].opt==1) a[i].val=lower_bound(b+1,b+1+cnt,a[i].val)-b; //离散化,权值既是编号
  160. for (int i=1;i<=n;i++)
  161. {
  162. if (a[i].opt==1)
  163. {
  164. int lyf,ymh=0;
  165. if (s.size()==0)
  166. {
  167. cout<<1<<"\n";
  168. s.insert(a[i].val);
  169. root=a[i].val;
  170. continue;
  171. }
  172. set<int> :: iterator now = s.upper_bound(a[i].val);
  173. if(now!=s.end())
  174. {
  175. //ymh=max(ymh,query(*now));
  176. if (query(*now)>=ymh) ymh=query(*now),lyf=*now;
  177. }
  178. if(now!=s.begin())
  179. {
  180. --now;
  181. if (query(*now)>=ymh) ymh=query(*now),lyf=*now;
  182. }
  183. //插入的时候,应该找到前驱和后继深度较深的那个,然后插入
  184. //因为前驱和后继一定是父子关系,只有深的那个 才可能出现合法位置的空儿子
  185. cout<<ymh+1<<"\n";
  186. zuzong[a[i].val]=lyf;
  187. son[lyf][lyf<a[i].val]=a[i].val;
  188. s.insert(a[i].val);
  189. link(a[i].val,lyf);
  190. }
  191. if (a[i].opt==2)
  192. {
  193. int now = *(s.begin());
  194. int faa = zuzong[now];
  195. int ss = son[now][1];
  196. cout<<query(now)<<"\n";
  197. if (now==root) continue;
  198. cut(now,faa);
  199. cut(now,ss);
  200. link(ss,faa);
  201. link(root,now);
  202. zuzong[root]=now;
  203. zuzong[now]=0;
  204. son[now][1]=root;
  205. zuzong[ss]=faa;
  206. son[faa][0]=ss;
  207. root=now;
  208. //找到最小值,然后手动修改原树的父子关系,然后暴力link和cut
  209. }
  210. if (a[i].opt==3)
  211. {
  212. int now = *(s.rbegin());
  213. int faa = zuzong[now];
  214. int ss = son[now][0];
  215. cout<<query(now)<<"\n";
  216. if (now==root) continue;
  217. cut(now,faa);
  218. cut(now,ss);
  219. link(ss,faa);
  220. link(root,now);
  221. zuzong[root]=now;
  222. zuzong[now]=0;
  223. son[now][0]=root;
  224. zuzong[ss]=faa;
  225. son[faa][1]=ss;
  226. root=now;
  227. //和最小值同理
  228. }
  229. if(a[i].opt==4)
  230. {
  231. set<int> :: iterator pos = s.begin();
  232. int now = *(s.begin());
  233. int faa = zuzong[now];
  234. int ss = son[now][1];
  235. cout<<query(now)<<"\n";
  236. cut(now,faa);
  237. cut(now,ss);
  238. link(ss,faa);
  239. zuzong[ss]=faa;
  240. son[faa][0]=ss;
  241. son[now][0]=son[now][1]=zuzong[now]=0;
  242. s.erase(now);
  243. if (root==now) root=ss;
  244. }
  245. if (a[i].opt==5)
  246. {
  247. int now = *(s.rbegin());
  248. int faa = zuzong[now];
  249. int ss = son[now][0];
  250. cout<<query(now)<<"\n";
  251. cut(now,faa);
  252. cut(now,ss);
  253. link(ss,faa);
  254. zuzong[ss]=faa;
  255. son[faa][1]=ss;
  256. son[now][0]=son[now][1]=zuzong[now]=0;
  257. s.erase(now);
  258. if (root==now) root=ss;
  259. }
  260. makeroot(root);
  261. }
  262. return 0;
  263. }

洛谷3721 HNOI2017单旋(LCT+set+思维)的更多相关文章

  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. 洛谷 P3721 - [AH2017/HNOI2017]单旋(LCT)

    洛谷题面传送门 终于调出来这道题了,写篇题解( 首先碰到这样的题我们肯定要考虑每种操作会对树的形态产生怎样的影响: 插入操作:对于 BST 有一个性质是,当你插入一个节点时,其在 BST 上的父亲肯定 ...

  7. bzoj P4825 [Hnoi2017]单旋——solution

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

  8. HNOI2017 单旋

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

  9. HNOI2017单旋

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

随机推荐

  1. twemproxy《一》

    twemproxy 做redis客户端中间代理的时候,如果redis有密码时,需要在nutcracker.yml中添加密码:

  2. 将 VS2017下开发的程序, 部署到其他电脑上运行

    关键步骤:设置Release,如下图 如果无法直接执行,则安装ALI213-Microsoft.Visual.C++.2017.Redistributable.Package.x86.x64

  3. Oracle存储过程锁表

    存储过程: 解决方法如下: 1:查V$DB_OBJECT_CACHE SELECT * FROM V$DB_OBJECT_CACHE WHERE name='CRM_LASTCHGINFO_DAY' ...

  4. Python之psutil-进程管理

    在给PC端应用做自动化测试或者监测应用性能时,不可避免的会与进程管理打交道,python中的psutil模块能够帮助我们处理进程,它主要用于系统监视.分析和限制进程资源以及管理正在运行的进程.一起来了 ...

  5. Docker | 入门 & 基础操作

    Dcoker 入门 确保docker 已经安装好了,如没有装好的可以参考:Docker | 安装 运行第一个容器 docker run -it ubuntu /bin/bash docker run ...

  6. C#中的“等待窗体”对话框

    这篇文章向您展示了如何在c#.net Windows窗体应用程序中创建一个等待窗体对话框.创建一个新表单,然后输入您的表单名称为frmWaitForm.接下来,将Label,Progress Bar控 ...

  7. 数据治理中Oracle SQL和存储过程的数据血缘分析

    数据治理中Oracle SQL和存储过程的数据血缘分析   数据治理中的一个重要基础工作是分析组织中数据的血缘关系.有了完整的数据血缘关系,我们可以用它进行数据溯源.表和字段变更的影响分析.数据合规性 ...

  8. Spring基于XML方式加载Bean定义信息(又名:Spring IOC源码时序图)-图解

  9. TCL、华星光电和中环股份,如何在一条生态链上领跑?

    聚众智.汇众力.采众长. "我们决心用五年时间,将TCL科技和TCL实业做到真正的世界500强,将智能终端.半导体显示.半导体光伏三大核心产业力争做到全球领先,将半导体材料等其他产业做到中国 ...

  10. Spring Boot学习(一)——Spring Boot介绍

    Spring Boot介绍 Spring Boot简介 Spring Boot是由Pivotal团队提供的全新框架,其设计目的是用来简化新Spring应用的初始搭建以及开发过程.该框架使用了特定的方式 ...