P4008 [NOI2003]文本编辑器
思路
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]文本编辑器的更多相关文章
- 洛谷 P4008 [NOI2003]文本编辑器 解题报告
P4008 [NOI2003]文本编辑器 题目描述 很久很久以前,\(DOS3.x\)的程序员们开始对 \(EDLIN\) 感到厌倦.于是,人们开始纷纷改用自己写的文本编辑器⋯⋯ 多年之后,出于偶然的 ...
- luogu P4008 [NOI2003]文本编辑器 splay 块状链表
LINK:文本编辑器 这个东西感觉块状链表写细节挺多 (块状链表本来就难写 解释一下块状链表的做法:其实是一个个数组块 然后利用链表给链接起来 每个块的大小为sqrt(n). 这样插入删除的时候直接暴 ...
- 洛谷 P4008 [NOI2003]文本编辑器
先推广一下 求赞 我们考虑这样的一个问题 给你一个序列,要求你支持插入,删除,查询单点值 如果用数组,查询O(1),插入删除最坏O(n) 如果用链表,插入删除O(1),查询最坏O(n) 如果用平衡树- ...
- [NOI2003] 文本编辑器 (splay)
复制炸格式了,就不贴题面了 [NOI2003] 文本编辑器 Solution 对于光标的移动,我们只要记录一下现在在哪里就可以了 Insert操作:手动维护中序遍历结果,即每次取中点像线段树一样一样递 ...
- [NOI2003]文本编辑器 [Fhq Treap]
[NOI2003]文本编辑器 没啥好说的 就是个板子 #include <bits/stdc++.h> // #define int long long #define rep(a , b ...
- cogs 330. [NOI2003] 文本编辑器
★★★ 输入文件:editor2003.in 输出文件:editor2003.out 简单对比 时间限制:2 s 内存限制:128 MB [问题描述] 很久很久以前,DOS3.x的程序 ...
- 题解 P4008 【[NOI2003]文本编辑器】
块状链表及其应用 思路楼上已经说的很清楚了 看代码注释 代码很丑 #include<cstdio> #include<cctype> #include<cstring&g ...
- 【洛谷 P4008】 [NOI2003]文本编辑器 (Splay)
题目链接 \(Splay\)先练到这吧(好像还有道毒瘤的维护数列诶,算了吧) 记录下光标的编号,维护就是\(Splay\)基操了. 另外数据有坑,数据是\(Windows\)下生成了,回车是'\n\r ...
- NOI2003 文本编辑器editor
1507: [NOI2003]Editor Time Limit: 5 Sec Memory Limit: 162 MBSubmit: 1908 Solved: 738[Submit][Statu ...
随机推荐
- Windows server 2008 R2实现多用户远程连接 (转)
经常使用远程桌面的朋友可能会注意到,Windows server 2008 R2中,远程桌面最多只允许两个人远程连接,第三个人就无法连接过去,但是生产环境中有一些服务器可能有许多人需要连接上去,而微软 ...
- html5-盒子模型
/*div{background: green;width: 60%;padding-top: 10px;padding-right: 20px;padding-bottom: 30px;paddin ...
- vue-cli项目npm run build后,index.html无法在浏览器打开
- js中时间戳转换成时间格式
js中时间戳转换成时间格式, // 时间戳转换成时间格式 var formatDate = function(date){ date = new Date(date); var y=date.getF ...
- RESTful API 设计指南,RESTful API 设计最佳实践
RESTful API 设计指南,RESTful API 设计最佳实践 网络应用程序,分为前端和后端两个部分.当前的发展趋势,就是前端设备层出不穷(手机.平板.桌面电脑.其他专用设备......). ...
- 前端框架VUE----es6简单介绍
1.ECMAScript 6 简介 ECMAScript 6.0(以下简称 ES6)是 JavaScript 语言的下一代标准,已经在 2015 年 6 月正式发布了.它的目标,是使得 JavaScr ...
- zabbix实现电话、短信、邮件报警
该报警方式提前说明:(1)该方式可以实现zabbix免费电话报警以及微信.短信.邮件报警,但有数量限制.详见如下:如数量不能满足需要以及人员需要,可以考虑购买收费版.(2)毕竟是免费版,电话通知要省着 ...
- 学写网页 #06# table
A B E C D <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> & ...
- php 使用table方式导出excel文件
这些天在使用PHPExcel导出数据时,5000条数据竟然挂了.后来跟同事聊聊,有些明悟,PHPExcel做了很多处理,我在这里理解为渲染,就会暂用过多的空间,‘膨胀’的空间导致内存暂用过大,就挂了. ...
- P2801 教主的魔法(分块)
P2801 教主的魔法 区间加法,区间查询 显然就是分块辣 维护一个按块排好序的数组. 每次修改依然是整块打标记,零散块暴力.蓝后对零散块重新排序. 询问时整块二分,零散块暴力就好辣 注意细节挺多和边 ...