题目链接

  1. //注意反转时先分裂r,因为l,r是针对整棵树的排名
  2. #include<cstdio>
  3. #include<cctype>
  4. #include<algorithm>
  5. //#define gc() getchar()
  6. #define gc() (SS==TT&&(TT=(SS=IN)+fread(IN,1,MAXIN,stdin),SS==TT)?EOF:*SS++)
  7. const int N=1e5+7,MAXIN=2e6;
  8. int n,root,sz[N],son[N][2],fix[N],tag[N];
  9. char IN[MAXIN],*SS=IN,*TT=IN;
  10. inline int read()
  11. {
  12. int now=0,f=1;register char c=gc();
  13. for(;!isdigit(c);c=gc()) if(c=='-') f=-1;
  14. for(;isdigit(c);now=now*10+c-'0',c=gc());
  15. return now*f;
  16. }
  17. inline void Update(int rt)
  18. {
  19. sz[rt]=sz[son[rt][0]]+sz[son[rt][1]]+1;
  20. }
  21. inline void Down(int rt)
  22. {
  23. tag[son[rt][0]]^=1,
  24. tag[son[rt][1]]^=1;
  25. std::swap(son[rt][0],son[rt][1]);
  26. tag[rt]=0;//清空!
  27. }
  28. int Build(int l,int r)
  29. {
  30. if(l>r) return 0;
  31. int m=l+r>>1;
  32. fix[m]=rand(),sz[m]=1;
  33. son[m][0]=Build(l,m-1),
  34. son[m][1]=Build(m+1,r);
  35. Update(m);
  36. return m;
  37. }
  38. void Split(int rt,int k,int &x,int &y)
  39. {
  40. if(!rt) x=y=0;
  41. else
  42. {
  43. if(tag[rt]) Down(rt);
  44. if(k<=sz[son[rt][0]]) y=rt,Split(son[rt][0],k,x,son[rt][0]);
  45. else x=rt,Split(son[rt][1],k-sz[son[rt][0]]-1,son[rt][1],y);
  46. Update(rt);
  47. }
  48. }
  49. int Merge(int x,int y)
  50. {
  51. if(!x||!y) return x+y;
  52. if(tag[x]) Down(x);
  53. if(tag[y]) Down(y);
  54. if(fix[x]<fix[y])
  55. {
  56. son[x][1]=Merge(son[x][1],y);
  57. Update(x);
  58. return x;
  59. }
  60. else
  61. {
  62. son[y][0]=Merge(x,son[y][0]);
  63. Update(y);
  64. return y;
  65. }
  66. }
  67. void Reverse()
  68. {
  69. int x,y,z,l=read(),r=read();
  70. Split(root,r+1,y,z), Split(y,l,x,y);
  71. tag[y]^=1;
  72. root=Merge(Merge(x,y),z);
  73. }
  74. void DFS(int rt)
  75. {
  76. if(tag[rt]) Down(rt);
  77. if(son[rt][0]) DFS(son[rt][0]);
  78. if(rt!=1&&rt!=n+2) printf("%d ",rt-1);
  79. if(son[rt][1]) DFS(son[rt][1]);
  80. }
  81. int main()
  82. {
  83. #ifndef ONLINE_JUDGE
  84. freopen("3391.in","r",stdin);
  85. #endif
  86. n=read();
  87. root=Build(1,n+2);
  88. int q=read();
  89. while(q--) Reverse();
  90. DFS(root);
  91. return 0;
  92. }

洛谷.3391.文艺平衡树(fhq Traep)的更多相关文章

  1. [洛谷P3391] 文艺平衡树 (Splay模板)

    初识splay 学splay有一段时间了,一直没写...... 本题是splay模板题,维护一个1~n的序列,支持区间翻转(比如1 2 3 4 5 6变成1 2 3 6 5 4),最后输出结果序列. ...

  2. BZOJ3223/洛谷P3391 - 文艺平衡树

    BZOJ链接 洛谷链接 题意 模板题啦~2 代码 //文艺平衡树 #include <cstdio> #include <algorithm> using namespace ...

  3. 洛谷 P3391 文艺平衡树

    题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 4 1 --b ...

  4. 洛谷P3391文艺平衡树(Splay)

    题目传送门 转载自https://www.cnblogs.com/yousiki/p/6147455.html,转载请注明出处 经典引文 空间效率:O(n) 时间效率:O(log n)插入.查找.删除 ...

  5. 洛谷P3391 文艺平衡树 (Splay模板)

    模板题. 注意标记即可,另外,涉及区间翻转操作,记得设立首尾哨兵. 1 #include<bits/stdc++.h> 2 using namespace std; 3 const int ...

  6. BZOJ3224/洛谷P3391 - 普通平衡树(Splay)

    BZOJ链接 洛谷链接 题意简述 模板题啦~ 代码 //普通平衡树(Splay) #include <cstdio> int const N=1e5+10; int rt,ndCnt; i ...

  7. 洛谷P3369普通平衡树(Treap)

    题目传送门 转载自https://www.cnblogs.com/fengzhiyuan/articles/7994428.html,转载请注明出处 Treap 简介 Treap 是一种二叉查找树.它 ...

  8. P3391 【模板】文艺平衡树FHQ treap

    P3391 [模板]文艺平衡树(Splay) 题目背景 这是一道经典的Splay模板题——文艺平衡树. 题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转 ...

  9. 洛谷.3391.[模板]文艺平衡树(Splay)

    题目链接 //注意建树 #include<cstdio> #include<algorithm> const int N=1e5+5; //using std::swap; i ...

随机推荐

  1. Python startswith() 函数 判断字符串开头

    Python startswith() 函数 判断字符串开头 函数:startswith() 作用:判断字符串是否以指定字符或子字符串开头 一.函数说明语法:string.startswith(str ...

  2. 蓝牙Bluetooth技术手册规范下载【转】

    蓝牙Bluetooth技术手册规范下载 http://www.crifan.com/summary_bluetooth_specification_download/ [背景] 之前就已经整理和转帖了 ...

  3. jdk8系列一、jdk8 Lamda表达式语法、接口的默认方法和静态方法、supplier用法

    一.简介 毫无疑问,Java 8是Java自Java 5(发布于2004年)之后的最重要的版本.这个版本包含语言.编译器.库.工具和JVM等方面的十多个新特性. 在本文中我们将学习这些新特性,并用实际 ...

  4. java多线程系列五、并发容器

    一.ConcurrentHashMap 1.为什么要使用ConcurrentHashMap 在多线程环境下,使用HashMap进行put操作会引起死循环,导致CPU利用率接近100%,HashMap在 ...

  5. windows使用python原生组件包获取系统日志信息

    #coding=utf8 import sys import traceback import win32con import win32evtlog import win32evtlogutil i ...

  6. CentOS 6.5自动化运维之基于DHCP和TFTP服务的PXE自动化安装centos操作系统详解

    前言    如果要给很多台客户端主机安装操作系统,要是每一台都拿张安装光盘一台一台主机的去装系统那就太浪费时间和精力了.在生产环境中也不实际,要实现为多台主机自动安装操作系统,那我们怎么实现自动化安装 ...

  7. dell r720服务器raid5安装centos6.5系统

    服务器型号R720 已经配置好了raid,需要安装centos6.5系统 1.开机,按F10,进入系统引导界面,选择加载系统选项,并选择redhat 6.7选项 系统提示不支持,选择仍然继续,根据提示 ...

  8. tsconfig.json配置

    什么工具看什么官网-一般都会有说明的 https://www.tslang.cn/docs/handbook/tsconfig-json.html 概述 如果一个目录下存在一个tsconfig.jso ...

  9. Best quotes from The Vampire Diary(《吸血鬼日记》经典台词)

    1. I will start fresh, be someone new. 1. 我要重新开始,做不一样的自己. 2. It's the only way I'll make it through. ...

  10. ctype

    original:http://www.runoob.com/cprogramming/c-standard-library-ctype-h.html 下面列出了头文件 ctype.h 中定义的函数: ...