BZOJ_1269&&1507_[AHOI2006]文本编辑器editor&&[NOI2003]Editor
BZOJ_1269&&1507_[AHOI2006]文本编辑器editor&&[NOI2003]Editor
题意:
分析:
splay模拟即可
注意1507的读入格式,最好用getchar
代码:
1269:
- #include <stdio.h>
- #include <string.h>
- #include <algorithm>
- using namespace std;
- #define N 2097200
- #define ls ch[p][0]
- #define rs ch[p][1]
- #define get(x) (ch[f[x]][1]==x)
- int ch[N][2],f[N],siz[N],val[N],sz;
- int S[N],top,tot,pos,turn[N],rt,n;
- char opt[20],a[N];
- void clear(int p){ ch[p][0]=ch[p][1]=f[p]=turn[p]=siz[p]=val[p]=0; }
- int newnode(int v)
- {
- int p;
- if(top)p=S[--top];
- else p=++tot;
- clear(p);
- val[p]=v;siz[p]=1;
- return p;
- }
- void pushup(int p){ if(p) siz[p]=siz[ls]+siz[rs]+1; }
- void pushdown(int p)
- {
- if(turn[p])
- {
- turn[p]=0;turn[ls]^=1;turn[rs]^=1;
- if(ls) swap(ch[ls][0],ch[ls][1]);
- if(rs) swap(ch[rs][0],ch[rs][1]);
- }
- }
- void rotate(int x)
- {
- int y=f[x],z=f[y],k=get(x);
- ch[y][k]=ch[x][k^1];f[ch[y][k]]=y;ch[x][k^1]=y;
- f[y]=x;f[x]=z;if(z) ch[z][ch[z][1]==y]=x;
- pushup(y);pushup(x);if(rt==y)rt=x;
- }
- 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); }
- int find(int x)
- {
- int p=rt;
- while(1) {
- pushdown(p);
- if(x<=siz[ls])p=ls;
- else {
- x-=siz[ls]+1;
- if(!x)return p;
- p=rs;
- }
- }
- }
- void rec(int p)
- {
- if(!p)return ;
- if(ls)rec(ls);ls=0;
- if(rs)rec(rs);rs=0;
- clear(p);
- S[top++]=p;
- }
- void build_merge(int fa,int l,int r,bool flg)
- {
- if(l>r)return ;
- int mid=l+r>>1,p=newnode(a[mid]);
- ch[fa][flg]=p;
- f[p]=fa;
- build_merge(p,l,mid-1,0);build_merge(p,mid+1,r,1);
- pushup(p);
- }
- void insert(int x,int cnt)
- {
- int i;
- char w;
- /*for(i=1;i<=cnt;)
- {
- w=getchar();
- if(w=='\r'||w=='\n')continue;
- a[i++]=w;
- }*/
- gets(a+1);
- //printf("%s\n",a+1);
- int p=x+1;
- x=find(x);p=find(p);splay(x,0);splay(p,rt);
- build_merge(p,1,cnt,0);
- pushup(p);pushup(x);
- }
- void del(int x,int p)
- {
- x=find(x);p=find(p);
- splay(x,0);splay(p,rt);
- rec(ls);
- ls=0;
- pushup(p);pushup(x);
- }
- void reverse(int x,int p)
- {
- x=find(x);p=find(p);
- splay(x,0);splay(p,rt);
- turn[ls]^=1;swap(ch[ls][0],ch[ls][1]);
- pushup(p);pushup(x);
- }
- void print()
- {
- printf("sz = %d\n",sz);
- for(int i=1;i<=sz;i++)printf("%c\n",val[find(i)]);
- }
- int main()
- {
- scanf("%d",&n);
- tot=sz=2;
- ch[1][1]=2;
- f[2]=1;
- siz[1]=2;siz[2]=1;
- rt=1;
- pos++;
- int i,x,y;
- for(int i=1;i<=n;i++)
- {
- scanf("%s",opt);
- if(opt[0]=='M'){
- scanf("%d",&x);
- pos=x+1;
- }else if(opt[0]=='I'){
- scanf("%d%*c",&x);
- insert(pos,x);sz+=x;
- //print();
- }else if(opt[0]=='D'){
- scanf("%d",&x);
- del(pos,pos+x+1);sz-=x;
- //print();
- }else if(opt[0]=='R'){
- scanf("%d",&x);
- reverse(pos,pos+x+1);
- //reverse(12,17);
- //print();
- }else if(opt[0]=='G'){
- x=find(pos+1);
- splay(x,0);
- printf("%c\n",val[x]);
- }else if(opt[0]=='P'){
- pos--;
- }else{
- pos++;
- }
- }
- }
1507:
- #include <stdio.h>
- #include <string.h>
- #include <algorithm>
- using namespace std;
- #define N 2097200
- #define ls ch[p][0]
- #define rs ch[p][1]
- #define get(x) (ch[f[x]][1]==x)
- int ch[N][2],f[N],siz[N],val[N],sz;
- int S[N],top,tot,pos,rt,n;
- char opt[20],a[N];
- void clear(int p){ ch[p][0]=ch[p][1]=f[p]=siz[p]=val[p]=0; }
- int newnode(int v)
- {
- int p;
- if(top)p=S[--top];
- else p=++tot;
- clear(p);
- val[p]=v;siz[p]=1;
- return p;
- }
- void pushup(int p){ if(p) siz[p]=siz[ls]+siz[rs]+1; }
- void rotate(int x)
- {
- int y=f[x],z=f[y],k=get(x);
- ch[y][k]=ch[x][k^1];f[ch[y][k]]=y;ch[x][k^1]=y;
- f[y]=x;f[x]=z;if(z) ch[z][ch[z][1]==y]=x;
- pushup(y);pushup(x);if(rt==y)rt=x;
- }
- 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); }
- int find(int x)
- {
- int p=rt;
- while(1) {
- if(x<=siz[ls])p=ls;
- else {
- x-=siz[ls]+1;
- if(!x)return p;
- p=rs;
- }
- }
- }
- void rec(int p)
- {
- if(!p)return ;
- if(ls)rec(ls);ls=0;
- if(rs)rec(rs);rs=0;
- clear(p);
- S[top++]=p;
- }
- void build_merge(int fa,int l,int r,bool flg)
- {
- if(l>r)return ;
- int mid=l+r>>1,p=newnode(a[mid]);
- ch[fa][flg]=p;
- f[p]=fa;
- build_merge(p,l,mid-1,0);build_merge(p,mid+1,r,1);
- pushup(p);
- }
- void insert(int x,int cnt)
- {
- int i=0;
- while(a[i+1]=getchar())
- {
- if(a[i+1]!=10&&a[i+1]!=13){
- i++;if(i==cnt)break;
- }
- }
- //printf("%s\n",a+1);
- int p=x+1;
- x=find(x);p=find(p);splay(x,0);splay(p,rt);
- build_merge(p,1,cnt,0);
- pushup(p);pushup(x);
- }
- void del(int x,int p)
- {
- x=find(x);p=find(p);
- splay(x,0);splay(p,rt);
- rec(ls);
- ls=0;
- pushup(p);pushup(x);
- }
- void print(int p)
- {
- if(!p)return ;
- if(ls>2)print(ls);
- printf("%c",val[p]);
- if(rs>2)print(rs);
- }
- int main()
- {
- scanf("%d",&n);
- tot=sz=2;
- ch[1][1]=2;
- f[2]=1;
- siz[1]=2;siz[2]=1;
- rt=1;
- pos++;
- int i,x,y;
- for(int i=1;i<=n;i++)
- {
- scanf("%s",opt);
- //printf("%d\n",i);
- if(opt[0]=='M'){
- scanf("%d",&x);
- pos=x+1;
- }else if(opt[0]=='I'){
- scanf("%d",&x);
- insert(pos,x);sz+=x;
- }else if(opt[0]=='D'){
- scanf("%d",&x);
- if(pos+x+1>sz)x=sz-pos-1;
- del(pos,pos+x+1);sz-=x;
- }else if(opt[0]=='G'){
- scanf("%d",&x);
- int p=pos;
- x=p+x+1;
- p=find(p);
- x=find(x);
- splay(p,0);
- splay(x,rt);
- print(ch[x][0]);puts("");
- }else if(opt[0]=='P'){
- pos--;
- }else{
- pos++;
- }
- }
- }
BZOJ_1269&&1507_[AHOI2006]文本编辑器editor&&[NOI2003]Editor的更多相关文章
- 【bzoj1507】[NOI2003]Editor /【bzoj1269】[AHOI2006]文本编辑器editor Splay
[bzoj1507][NOI2003]Editor 题目描述 输入 输入文件editor.in的第一行是指令条数t,以下是需要执行的t个操作.其中: 为了使输入文件便于阅读,Insert操作的字符串中 ...
- AHOI2006文本编辑器editor
1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 1885 Solved: 683[Submit ...
- 【BZOJ1269/1507】[AHOI2006]文本编辑器editor Splay
[BZOJ1269][AHOI2006]文本编辑器editor Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目 ...
- BZOJ 1269: [AHOI2006]文本编辑器editor( splay )
splay..( BZOJ 1507 题目基本相同..双倍经验 ) ------------------------------------------------------------------ ...
- BZOJ 1269: [AHOI2006]文本编辑器editor (splay tree)
1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 1213 Solved: 454[Submit ...
- BZOJ1269 [AHOI2006]文本编辑器editor 【82行splay】
1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec Memory Limit: 162 MB Submit: 4633 Solved: 1782 [Sub ...
- [AHOI2006] 文本编辑器editor
Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目标,可可对"文本编辑器"做了一个抽象的定义: ...
- [bzoj1269][AHOI2006文本编辑器editor] (splay模版题 or pb_ds [rope]大法)
Description 这些日子,可可不和卡卡一起玩了,原来可可正废寝忘食的想做一个简单而高效的文本编辑器.你能帮助他吗?为了明确任务目标,可可对“文本编辑器”做了一个抽象的定义: 文本:由0个或 ...
- Bzoj1269 [AHOI2006]文本编辑器editor
Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 3678 Solved: 1380 Description 这些日子,可可不和卡卡一起玩了,原来可可正 ...
随机推荐
- word break II(单词切分)
Given a non-empty string s and a dictionary wordDict containing a list of non-empty words, add space ...
- DBC的故事
1.DBC定义 DBC(data base CAN)是汽车ECU间进行CAN通讯的报文内容,有了它相互之间才能听懂. 2.DBC查看 DBC是文本文件,可以用记事本打开,一般都用CANdb++,可以更 ...
- SQL Server 表的管理_关于完整性约束的详解(案例代码)
SQL Server 表的管理之_关于完整性约束的详解 一.概述: ●约束是SQL Server提供的自动保持数据库完整性的一种方法, 它通过限制字段中数据.记录中数据和表之间的数据来保证数据的完整性 ...
- 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( ...
- Android Studio 插件开发详解四:填坑
转载请标明出处:http://blog.csdn.net/zhaoyanjun6/article/details/78265540 本文出自[赵彦军的博客] 在前面我介绍了插件开发的基本流程 [And ...
- 在cmd下运行Python脚本+如何使用Python Shell
原文:https://blog.csdn.net/flyfrommath/article/details/77447587?locationNum=2&fps=1
- html居中定位
<!DOCTYPE html PUBLIC "-//W3C//Ddiv XHTML 1.0 divansitional//EN" "http://www.w3.or ...
- meta 刷新
<meta http-equiv="refresh" content="5;url=地址" /> 5秒后刷新至URL地址
- memcached command
http://lzone.de/cheat-sheet/memcached memcached Cheat Sheet Telnet Interface How To Connect Use &quo ...
- Python中Json对象处理的jsonpath-rw
这两天在写一个爬虫,需要从网站返回的json数据提取一些有用的数据. 向url发起请求,返回的是response,在python3中,response.content是二进制bytes类型的,需要用d ...