BZOJ_1269&&1507_[AHOI2006]文本编辑器editor&&[NOI2003]Editor

题意:

分析:

splay模拟即可

注意1507的读入格式,最好用getchar

代码:

1269:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <algorithm>
  4. using namespace std;
  5. #define N 2097200
  6. #define ls ch[p][0]
  7. #define rs ch[p][1]
  8. #define get(x) (ch[f[x]][1]==x)
  9. int ch[N][2],f[N],siz[N],val[N],sz;
  10. int S[N],top,tot,pos,turn[N],rt,n;
  11. char opt[20],a[N];
  12. void clear(int p){ ch[p][0]=ch[p][1]=f[p]=turn[p]=siz[p]=val[p]=0; }
  13. int newnode(int v)
  14. {
  15. int p;
  16. if(top)p=S[--top];
  17. else p=++tot;
  18. clear(p);
  19. val[p]=v;siz[p]=1;
  20. return p;
  21. }
  22. void pushup(int p){ if(p) siz[p]=siz[ls]+siz[rs]+1; }
  23. void pushdown(int p)
  24. {
  25. if(turn[p])
  26. {
  27. turn[p]=0;turn[ls]^=1;turn[rs]^=1;
  28. if(ls) swap(ch[ls][0],ch[ls][1]);
  29. if(rs) swap(ch[rs][0],ch[rs][1]);
  30. }
  31. }
  32. void rotate(int x)
  33. {
  34. int y=f[x],z=f[y],k=get(x);
  35. ch[y][k]=ch[x][k^1];f[ch[y][k]]=y;ch[x][k^1]=y;
  36. f[y]=x;f[x]=z;if(z) ch[z][ch[z][1]==y]=x;
  37. pushup(y);pushup(x);if(rt==y)rt=x;
  38. }
  39. void splay(int x,int y){ for(int fa;(fa=f[x])!=y;rotate(x))if(f[fa]!=y)rotate((get(x)==get(fa))?fa:x); }
  40. int find(int x)
  41. {
  42. int p=rt;
  43. while(1) {
  44. pushdown(p);
  45. if(x<=siz[ls])p=ls;
  46. else {
  47. x-=siz[ls]+1;
  48. if(!x)return p;
  49. p=rs;
  50. }
  51. }
  52. }
  53. void rec(int p)
  54. {
  55. if(!p)return ;
  56. if(ls)rec(ls);ls=0;
  57. if(rs)rec(rs);rs=0;
  58. clear(p);
  59. S[top++]=p;
  60. }
  61. void build_merge(int fa,int l,int r,bool flg)
  62. {
  63. if(l>r)return ;
  64. int mid=l+r>>1,p=newnode(a[mid]);
  65. ch[fa][flg]=p;
  66. f[p]=fa;
  67. build_merge(p,l,mid-1,0);build_merge(p,mid+1,r,1);
  68. pushup(p);
  69. }
  70. void insert(int x,int cnt)
  71. {
  72. int i;
  73. char w;
  74. /*for(i=1;i<=cnt;)
  75. {
  76. w=getchar();
  77. if(w=='\r'||w=='\n')continue;
  78. a[i++]=w;
  79. }*/
  80. gets(a+1);
  81. //printf("%s\n",a+1);
  82. int p=x+1;
  83. x=find(x);p=find(p);splay(x,0);splay(p,rt);
  84. build_merge(p,1,cnt,0);
  85. pushup(p);pushup(x);
  86. }
  87. void del(int x,int p)
  88. {
  89. x=find(x);p=find(p);
  90. splay(x,0);splay(p,rt);
  91. rec(ls);
  92. ls=0;
  93. pushup(p);pushup(x);
  94. }
  95. void reverse(int x,int p)
  96. {
  97. x=find(x);p=find(p);
  98. splay(x,0);splay(p,rt);
  99. turn[ls]^=1;swap(ch[ls][0],ch[ls][1]);
  100. pushup(p);pushup(x);
  101. }
  102. void print()
  103. {
  104. printf("sz = %d\n",sz);
  105. for(int i=1;i<=sz;i++)printf("%c\n",val[find(i)]);
  106. }
  107. int main()
  108. {
  109. scanf("%d",&n);
  110. tot=sz=2;
  111. ch[1][1]=2;
  112. f[2]=1;
  113. siz[1]=2;siz[2]=1;
  114. rt=1;
  115. pos++;
  116. int i,x,y;
  117. for(int i=1;i<=n;i++)
  118. {
  119. scanf("%s",opt);
  120. if(opt[0]=='M'){
  121. scanf("%d",&x);
  122. pos=x+1;
  123. }else if(opt[0]=='I'){
  124. scanf("%d%*c",&x);
  125. insert(pos,x);sz+=x;
  126. //print();
  127. }else if(opt[0]=='D'){
  128. scanf("%d",&x);
  129. del(pos,pos+x+1);sz-=x;
  130. //print();
  131. }else if(opt[0]=='R'){
  132. scanf("%d",&x);
  133. reverse(pos,pos+x+1);
  134. //reverse(12,17);
  135. //print();
  136. }else if(opt[0]=='G'){
  137. x=find(pos+1);
  138. splay(x,0);
  139. printf("%c\n",val[x]);
  140. }else if(opt[0]=='P'){
  141. pos--;
  142. }else{
  143. pos++;
  144. }
  145. }
  146. }

1507:

  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <algorithm>
  4. using namespace std;
  5. #define N 2097200
  6. #define ls ch[p][0]
  7. #define rs ch[p][1]
  8. #define get(x) (ch[f[x]][1]==x)
  9. int ch[N][2],f[N],siz[N],val[N],sz;
  10. int S[N],top,tot,pos,rt,n;
  11. char opt[20],a[N];
  12. void clear(int p){ ch[p][0]=ch[p][1]=f[p]=siz[p]=val[p]=0; }
  13. int newnode(int v)
  14. {
  15. int p;
  16. if(top)p=S[--top];
  17. else p=++tot;
  18. clear(p);
  19. val[p]=v;siz[p]=1;
  20. return p;
  21. }
  22. void pushup(int p){ if(p) siz[p]=siz[ls]+siz[rs]+1; }
  23. void rotate(int x)
  24. {
  25. int y=f[x],z=f[y],k=get(x);
  26. ch[y][k]=ch[x][k^1];f[ch[y][k]]=y;ch[x][k^1]=y;
  27. f[y]=x;f[x]=z;if(z) ch[z][ch[z][1]==y]=x;
  28. pushup(y);pushup(x);if(rt==y)rt=x;
  29. }
  30. void splay(int x,int y){ for(int fa;(fa=f[x])!=y;rotate(x))if(f[fa]!=y)rotate((get(x)==get(fa))?fa:x); }
  31. int find(int x)
  32. {
  33. int p=rt;
  34. while(1) {
  35. if(x<=siz[ls])p=ls;
  36. else {
  37. x-=siz[ls]+1;
  38. if(!x)return p;
  39. p=rs;
  40. }
  41. }
  42. }
  43. void rec(int p)
  44. {
  45. if(!p)return ;
  46. if(ls)rec(ls);ls=0;
  47. if(rs)rec(rs);rs=0;
  48. clear(p);
  49. S[top++]=p;
  50. }
  51. void build_merge(int fa,int l,int r,bool flg)
  52. {
  53. if(l>r)return ;
  54. int mid=l+r>>1,p=newnode(a[mid]);
  55. ch[fa][flg]=p;
  56. f[p]=fa;
  57. build_merge(p,l,mid-1,0);build_merge(p,mid+1,r,1);
  58. pushup(p);
  59. }
  60. void insert(int x,int cnt)
  61. {
  62. int i=0;
  63. while(a[i+1]=getchar())
  64. {
  65. if(a[i+1]!=10&&a[i+1]!=13){
  66. i++;if(i==cnt)break;
  67. }
  68. }
  69. //printf("%s\n",a+1);
  70. int p=x+1;
  71. x=find(x);p=find(p);splay(x,0);splay(p,rt);
  72. build_merge(p,1,cnt,0);
  73. pushup(p);pushup(x);
  74. }
  75. void del(int x,int p)
  76. {
  77. x=find(x);p=find(p);
  78. splay(x,0);splay(p,rt);
  79. rec(ls);
  80. ls=0;
  81. pushup(p);pushup(x);
  82. }
  83. void print(int p)
  84. {
  85. if(!p)return ;
  86. if(ls>2)print(ls);
  87. printf("%c",val[p]);
  88. if(rs>2)print(rs);
  89. }
  90. int main()
  91. {
  92. scanf("%d",&n);
  93. tot=sz=2;
  94. ch[1][1]=2;
  95. f[2]=1;
  96. siz[1]=2;siz[2]=1;
  97. rt=1;
  98. pos++;
  99. int i,x,y;
  100. for(int i=1;i<=n;i++)
  101. {
  102. scanf("%s",opt);
  103. //printf("%d\n",i);
  104. if(opt[0]=='M'){
  105. scanf("%d",&x);
  106. pos=x+1;
  107. }else if(opt[0]=='I'){
  108. scanf("%d",&x);
  109. insert(pos,x);sz+=x;
  110. }else if(opt[0]=='D'){
  111. scanf("%d",&x);
  112. if(pos+x+1>sz)x=sz-pos-1;
  113. del(pos,pos+x+1);sz-=x;
  114. }else if(opt[0]=='G'){
  115. scanf("%d",&x);
  116. int p=pos;
  117. x=p+x+1;
  118. p=find(p);
  119. x=find(x);
  120. splay(p,0);
  121. splay(x,rt);
  122. print(ch[x][0]);puts("");
  123. }else if(opt[0]=='P'){
  124. pos--;
  125. }else{
  126. pos++;
  127. }
  128. }
  129. }

BZOJ_1269&&1507_[AHOI2006]文本编辑器editor&&[NOI2003]Editor的更多相关文章

  1. 【bzoj1507】[NOI2003]Editor /【bzoj1269】[AHOI2006]文本编辑器editor Splay

    [bzoj1507][NOI2003]Editor 题目描述 输入 输入文件editor.in的第一行是指令条数t,以下是需要执行的t个操作.其中: 为了使输入文件便于阅读,Insert操作的字符串中 ...

  2. AHOI2006文本编辑器editor

    1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1885  Solved: 683[Submit ...

  3. 【BZOJ1269/1507】[AHOI2006]文本编辑器editor Splay

    [BZOJ1269][AHOI2006]文本编辑器editor Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目 ...

  4. BZOJ 1269: [AHOI2006]文本编辑器editor( splay )

    splay..( BZOJ 1507 题目基本相同..双倍经验 ) ------------------------------------------------------------------ ...

  5. BZOJ 1269: [AHOI2006]文本编辑器editor (splay tree)

    1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 1213  Solved: 454[Submit ...

  6. BZOJ1269 [AHOI2006]文本编辑器editor 【82行splay】

    1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec  Memory Limit: 162 MB Submit: 4633  Solved: 1782 [Sub ...

  7. [AHOI2006] 文本编辑器editor

    Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目标,可可对"文本编辑器"做了一个抽象的定义: ...

  8. [bzoj1269][AHOI2006文本编辑器editor] (splay模版题 or pb_ds [rope]大法)

    Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目标,可可对“文本编辑器”做了一个抽象的定义:   文本:由0个或 ...

  9. Bzoj1269 [AHOI2006]文本编辑器editor

    Time Limit: 10 Sec  Memory Limit: 162 MBSubmit: 3678  Solved: 1380 Description 这些日子,可可不和卡卡一起玩了,原来可可正 ...

随机推荐

  1. word break II(单词切分)

    Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, add space ...

  2. DBC的故事

    1.DBC定义 DBC(data base CAN)是汽车ECU间进行CAN通讯的报文内容,有了它相互之间才能听懂. 2.DBC查看 DBC是文本文件,可以用记事本打开,一般都用CANdb++,可以更 ...

  3. SQL Server 表的管理_关于完整性约束的详解(案例代码)

    SQL Server 表的管理之_关于完整性约束的详解 一.概述: ●约束是SQL Server提供的自动保持数据库完整性的一种方法, 它通过限制字段中数据.记录中数据和表之间的数据来保证数据的完整性 ...

  4. Terminating app due to uncaught exception 'CALayerInvalid', reason: 'layer <CALayer: 0x7fda42c66e30> is a part of cycle in its layer tree'

    iOS App里面所有的View构成一个组件树,这个树里面如果有了闭环就会出现这个报错,最常见的你不小在某UIViewController里面写了这样的代码: someView.addSubView( ...

  5. Android Studio 插件开发详解四:填坑

    转载请标明出处:http://blog.csdn.net/zhaoyanjun6/article/details/78265540 本文出自[赵彦军的博客] 在前面我介绍了插件开发的基本流程 [And ...

  6. 在cmd下运行Python脚本+如何使用Python Shell

    原文:https://blog.csdn.net/flyfrommath/article/details/77447587?locationNum=2&fps=1

  7. html居中定位

    <!DOCTYPE html PUBLIC "-//W3C//Ddiv XHTML 1.0 divansitional//EN" "http://www.w3.or ...

  8. meta 刷新

    <meta http-equiv="refresh" content="5;url=地址" /> 5秒后刷新至URL地址

  9. memcached command

    http://lzone.de/cheat-sheet/memcached memcached Cheat Sheet Telnet Interface How To Connect Use &quo ...

  10. Python中Json对象处理的jsonpath-rw

    这两天在写一个爬虫,需要从网站返回的json数据提取一些有用的数据. 向url发起请求,返回的是response,在python3中,response.content是二进制bytes类型的,需要用d ...