思路

FHQ Treap的板子

用FHQ Treap维护中序遍历序列即可

然后数组开够!

代码

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
struct Node{
int lson,rson,sz,num,ran;
}FHQ[300000*30];
int nowpos,n,m,Nodecnt,a[300000*30],root;
int new_Node(int num){
++Nodecnt;
FHQ[Nodecnt].lson=FHQ[Nodecnt].rson=0;
FHQ[Nodecnt].ran=rand();
FHQ[Nodecnt].num=num;
FHQ[Nodecnt].sz=1;
return Nodecnt;
}
void pushup(int o){
FHQ[o].sz=FHQ[FHQ[o].lson].sz+FHQ[FHQ[o].rson].sz+1;
}
void split(int val,int now,int &x,int &y){//sz
if(!now){
x=y=0;
return;
}
if(val<=FHQ[FHQ[now].lson].sz){
y=now;
split(val,FHQ[now].lson,x,FHQ[now].lson);
}
else{
x=now;
split(val-FHQ[FHQ[now].lson].sz-1,FHQ[now].rson,FHQ[now].rson,y);
}
pushup(now);
}
int merge(int x,int y){//x.w<y.w
if(x*y==0)
return x+y;
if(FHQ[x].ran<FHQ[y].ran){
FHQ[x].rson=merge(FHQ[x].rson,y);
pushup(x);
return x;
}
else{
FHQ[y].lson=merge(x,FHQ[y].lson);
pushup(y);
return y;
}
}
int build(int l,int r){
if(l>r)
return 0;
int mid=(l+r)>>1;
int t=new_Node(a[mid]);
FHQ[t].lson=build(l,mid-1);
FHQ[t].rson=build(mid+1,r);
pushup(t);
return t;
}
void query(int o){
if(!o)
return;
query(FHQ[o].lson);
printf("%c",FHQ[o].num);
query(FHQ[o].rson);
}
char opt[20];
int main(){
root=new_Node(-1);
nowpos=1;
scanf("%d",&m);
for(int i=1;i<=m;i++){
scanf("%s",opt);
if(opt[0]=='M'){
int x;
scanf("%d",&x);
nowpos=x+1;
}
else if(opt[0]=='I'){
int lroot,rroot,newroot;
split(nowpos,root,lroot,rroot);
scanf("%d",&n);
int cnt=1;
char c=getchar();
while(cnt<=n){
c=getchar();
if(c>=32&&c<=126){
a[cnt]=c;
cnt++;
}
}
newroot=build(1,n);
root=merge(merge(lroot,newroot),rroot);
}
else if(opt[0]=='D'){
int lroot,tmproot,midroot,rroot;
scanf("%d",&n);
split(nowpos,root,lroot,tmproot);
split(n,tmproot,midroot,rroot);
root=merge(lroot,rroot);
}
else if(opt[0]=='G'){
int lroot,tmproot,midroot,rroot;
scanf("%d",&n);
split(nowpos,root,lroot,tmproot);
split(n,tmproot,midroot,rroot);
query(midroot);
printf("\n");
root=merge(lroot,merge(midroot,rroot));
}
else if(opt[0]=='P'){
nowpos--;
}
else if(opt[0]=='N'){
nowpos++;
}
}
return 0;
}

P4008 [NOI2003]文本编辑器的更多相关文章

  1. 洛谷 P4008 [NOI2003]文本编辑器 解题报告

    P4008 [NOI2003]文本编辑器 题目描述 很久很久以前,\(DOS3.x\)的程序员们开始对 \(EDLIN\) 感到厌倦.于是,人们开始纷纷改用自己写的文本编辑器⋯⋯ 多年之后,出于偶然的 ...

  2. luogu P4008 [NOI2003]文本编辑器 splay 块状链表

    LINK:文本编辑器 这个东西感觉块状链表写细节挺多 (块状链表本来就难写 解释一下块状链表的做法:其实是一个个数组块 然后利用链表给链接起来 每个块的大小为sqrt(n). 这样插入删除的时候直接暴 ...

  3. 洛谷 P4008 [NOI2003]文本编辑器

    先推广一下 求赞 我们考虑这样的一个问题 给你一个序列,要求你支持插入,删除,查询单点值 如果用数组,查询O(1),插入删除最坏O(n) 如果用链表,插入删除O(1),查询最坏O(n) 如果用平衡树- ...

  4. [NOI2003] 文本编辑器 (splay)

    复制炸格式了,就不贴题面了 [NOI2003] 文本编辑器 Solution 对于光标的移动,我们只要记录一下现在在哪里就可以了 Insert操作:手动维护中序遍历结果,即每次取中点像线段树一样一样递 ...

  5. [NOI2003]文本编辑器 [Fhq Treap]

    [NOI2003]文本编辑器 没啥好说的 就是个板子 #include <bits/stdc++.h> // #define int long long #define rep(a , b ...

  6. cogs 330. [NOI2003] 文本编辑器

    ★★★   输入文件:editor2003.in   输出文件:editor2003.out   简单对比 时间限制:2 s   内存限制:128 MB [问题描述] 很久很久以前,DOS3.x的程序 ...

  7. 题解 P4008 【[NOI2003]文本编辑器】

    块状链表及其应用 思路楼上已经说的很清楚了 看代码注释 代码很丑 #include<cstdio> #include<cctype> #include<cstring&g ...

  8. 【洛谷 P4008】 [NOI2003]文本编辑器 (Splay)

    题目链接 \(Splay\)先练到这吧(好像还有道毒瘤的维护数列诶,算了吧) 记录下光标的编号,维护就是\(Splay\)基操了. 另外数据有坑,数据是\(Windows\)下生成了,回车是'\n\r ...

  9. NOI2003 文本编辑器editor

    1507: [NOI2003]Editor Time Limit: 5 Sec  Memory Limit: 162 MBSubmit: 1908  Solved: 738[Submit][Statu ...

随机推荐

  1. 8.Thread的join方法

    1.Thread类的join方法表示:当前线程执行结束再执行其它线程!在Thread类中有三个重载的方法分别是: public final synchronized void join(long mi ...

  2. SQl server更新某阶段的匹配关系。

    DECLARE @count INTEGERDECLARE @id INTEGERDECLARE @subjectID INTEGERSET @count=1SET @id =11894SET @su ...

  3. 1.python虚拟环境的安装-用以同时使用py2,py3

    第一步:安装环境支持[linux下在前加sudo] http://www.lfd.uci.edu/~gohlke/pythonlibs/#pycurl pip install virtualenv 第 ...

  4. Linux基础命令---杀死进程killall

    killall killall可以根据名字来杀死进程,它会给指定名字的所有进程发送信息.如果没有指定信号名,则发送SIGTERM.信号可以通过名称(例如-HUP或-SIGHUP)或数字(例如-1)或选 ...

  5. 【JavaScript 6连载】六、认识原型

    <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8" ...

  6. avr定时器做的正弦波

    2010-04-19 16:53:00 实物照片如下 RC电路的电阻为1K与10K时的波形分别如下 仿真图片如下: 程序如下: #include <iom16v.h> #include & ...

  7. mysql 2

    mysql索引原理 初识索引 为什么要索引?    加速查询   读写比10:1左右 什么是索引?       索引在MySQL中也叫是一种“键”,是存储引擎用于快速找到记录的一种数据结构. 索引是应 ...

  8. AtCoder Beginner Contest 082 A - Round Up the Mean

    题目链接:https://abc082.contest.atcoder.jp/tasks/abc082_a Time limit : 2sec / Memory limit : 256MB Score ...

  9. Python+OpenCV图像处理(十一)—— 图像金字塔

    简介:图像金字塔是图像中多尺度表达的一种,最主要用于图像的分割,是一种以多分辨率来解释图像的有效但概念简单的结构.简单来说,图像金字塔就是用来进行图像缩放的. 进行图像缩放可以用图像金字塔,也可以使用 ...

  10. oj练习

    1.toj  1138.   Binomial Showdown   $$ 二项式定理恒等式变换.数据类型溢出(乘法.加法).排列组合数计算优化(C(k,n) = C(n-k,n).排列组合数的计算. ...