文艺平衡树
From admin
背景 Background
此为平衡树系列第二道:文艺平衡树
描述 Description
您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:
翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 4 1
输入格式 InputFormat
第一行为n,m n表示初始序列有n个数,这个序列依次是(1,2……n-1,n)  m表示翻转操作次数
接下来m行每行两个数[l,r] 数据保证 1<=l<=r<=n
 
输出格式 OutputFormat
输出一行n个数字,表示原始序列经过m次变换后的结果
 
样例输入 SampleInput [复制数据]

5 3
1 3
1 3
1 4

样例输出 SampleOutput [复制数据]
 
4 3 2 1 5 
 
数据范围和注释 Hint
n,m<=100000 
题解:
终于A了这道题,好激动。。。
也终于找到了一个好的splay模版
向序列之神--splay进发!
代码:
  1. const maxn=+;
  2. var s,id,fa:array[..maxn] of longint;
  3. rev:array[..maxn] of boolean;
  4. c:array[..maxn,..] of longint;
  5. i,n,m,rt,x,y:longint;
  6. procedure swap(var x,y:longint);
  7. var t:longint;
  8. begin
  9. t:=x;x:=y;y:=t;
  10. end;
  11.  
  12. procedure pushup(x:longint);
  13. begin
  14. s[x]:=s[c[x,]]+s[c[x,]]+;
  15. end;
  16. procedure pushdown(x:longint);
  17. var l,r:longint;
  18. begin
  19. l:=c[x,];r:=c[x,];
  20. if rev[x] then
  21. begin
  22. swap(c[x,],c[x,]);
  23. rev[l]:=not(rev[l]);
  24. rev[r]:=not(rev[r]);
  25. rev[x]:=false;
  26. end;
  27. end;
  28. procedure rotate(x:longint;var k:Longint);
  29. var l,r,y,z:longint;
  30. begin
  31. y:=fa[x];z:=fa[y];
  32. if c[y,]=x then l:= else l:=;r:=l xor ;
  33. if y=k then k:=x else c[z,ord(c[z,]=y)]:=x;
  34. fa[x]:=z;fa[y]:=x;fa[c[x,r]]:=y;
  35. c[y,l]:=c[x,r];c[x,r]:=y;
  36. pushup(y);pushup(x);
  37. end;
  38. procedure splay(x:longint;var k:longint);
  39. var y,z:longint;
  40. begin
  41. while x<>k do
  42. begin
  43. y:=fa[x];z:=fa[y];
  44. if y<>k then
  45. begin
  46. if (c[z,]=y) xor (c[y,]=x) then rotate(x,k)
  47. else rotate(y,k);
  48. end;
  49. rotate(x,k);
  50. end;
  51. end;
  52. function find(x,rank:longint):longint;
  53. var l,r:longint;
  54. begin
  55. pushdown(x);l:=c[x,];r:=c[x,];
  56. if s[l]+=rank then exit(x)
  57. else if s[l]>=rank then exit(find(l,rank))
  58. else exit(find(r,rank-s[l]-));
  59. end;
  60. procedure rever(l,r:longint);
  61. var x,y:longint;
  62. begin
  63. x:=find(rt,l);y:=find(rt,r+);
  64. splay(x,rt);splay(y,c[x,]);
  65. rev[c[y,]]:=not(rev[c[y,]]);
  66. end;
  67. procedure build(l,r,f:longint);
  68. var mid,now,last:longint;
  69. begin
  70. if l>r then exit;
  71. now:=id[l];last:=id[f];
  72. if l=r then
  73. begin
  74. fa[now]:=last;s[now]:=;
  75. c[last,ord(l>f)]:=now;
  76. exit;
  77. end;
  78. mid:=(l+r)>>;
  79. build(l,mid-,mid);build(mid+,r,mid);
  80. now:=id[mid];pushup(mid);
  81. fa[now]:=last;
  82. c[last,ord(mid>f)]:=now;
  83. end;
  84. procedure init;
  85. begin
  86. readln(n,m);
  87. for i:= to n+ do id[i]:=i;
  88. build(,n+,);rt:=(n+)>>;
  89. end;
  90. procedure main;
  91. begin
  92. for i:= to m do
  93. begin
  94. readln(x,y);
  95. rever(x,y);
  96. end;
  97. for i:= to n+ do write(find(rt,i)-,' ');
  98. end;
  99. begin
  100. assign(input,'input.txt');assign(output,'output.txt');
  101. reset(input);rewrite(output);
  102. init;
  103. main;
  104. close(input);close(output);
  105. end.

tyvj 1729 文艺平衡树的更多相关文章

  1. [BZOJ3223]Tyvj 1729 文艺平衡树

    [BZOJ3223]Tyvj 1729 文艺平衡树 试题描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区 ...

  2. BZOJ3223: Tyvj 1729 文艺平衡树 [splay]

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 3595  Solved: 2029[Submit][Sta ...

  3. BZOJ 3223: Tyvj 1729 文艺平衡树

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 3628  Solved: 2052[Submit][Sta ...

  4. bzoj3223 Tyvj 1729 文艺平衡树(Splay Tree+区间翻转)

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 2202  Solved: 1226[Submit][Sta ...

  5. BZOJ 3223: Tyvj 1729 文艺平衡树(splay)

    速度居然进前十了...第八... splay, 区间翻转,用一个类似线段树的lazy标记表示是否翻转 ------------------------------------------------- ...

  6. 3223: Tyvj 1729 文艺平衡树

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 1347  Solved: 724[Submit][Stat ...

  7. bzoj 3223: Tyvj 1729 文艺平衡树 (splay)

    链接: https://www.lydsy.com/JudgeOnline/problem.php?id=3223 题面: 3223: Tyvj 1729 文艺平衡树 Time Limit: 10 S ...

  8. BZOJ 3223: Tyvj 1729 文艺平衡树-Splay树(区间翻转)模板题

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 6881  Solved: 4213[Submit][Sta ...

  9. fhq_treap || BZOJ 3223: Tyvj 1729 文艺平衡树 || Luogu P3391 【模板】文艺平衡树(Splay)

    题面: [模板]文艺平衡树(Splay) 题解:无 代码: #include<cstdio> #include<cstring> #include<iostream> ...

随机推荐

  1. php封装文件上传

    这是一个经常在项目中遇到的问题,所以封装一个,分享给大家. 一,前期配置php.ini     如果上传文件超过了php配置那么$_POST或者$_FILES等都是空数组,这点是一个坑,因为那时候就不 ...

  2. fsockopen/curl/file_get_contents效率比较

    前面小节 PHP抓取网络数据的6种常见方法 谈到了 fsockopen,curl与file_get_contents 的使用方法,虽然它们都能达到同一个使用目的,但是它们之间又有什么区别呢? 先谈谈c ...

  3. json字符串转JSONObject,输出JSONObject问题

    json架包:json-lib-2.4-jdk15.jar json字符串(存在null值)转JSONObject 后return JSONObject对象的时候会报错 例如: String str= ...

  4. windows下vs2013使用C++访问redis

    刚开始在windows下使用c++访问reids各种报错,经过网上到处搜方案,终于可以在windows下访问redis了,特将注意事项记录下来: 1.获取redis Window下的开发库源码,从gi ...

  5. mysql 的rmp安装

    新文档/* GitHub stylesheet for MarkdownPad (http://markdownpad.com) *//* Author: Nicolas Hery - http:// ...

  6. leetcode problem 41 -- First Missing Positive

    Given an unsorted integer array, find the first missing positive integer. For example,Given [1,2,0]  ...

  7. (转载)delphi checklistbox用法

    delphi checklistbox用法 在Delphi中checklistbox中高亮选中(不论是否Checked)能够进行操作么?删除,上下移动等等 删除:CheckListBox.Delete ...

  8. hdu 3549 Flow Problem Edmonds_Karp算法求解最大流

    Flow Problem 题意:N个顶点M条边,(2 <= N <= 15, 0 <= M <= 1000)问从1到N的最大流量为多少? 分析:直接使用Edmonds_Karp ...

  9. Hbase实例

    import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.had ...

  10. ColorDialog组件设置字体颜色

    1.设置颜色 private void button4_Click(object sender, EventArgs e) { this.colorDialog1.ShowDialog(); this ...