1、题意:各种splay操作,一道好的模板题2333

2、分析:splay模板题,没啥解释QAQ

#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
using namespace std;
#define M 2000010

inline int read(){
    char ch = getchar(); int x = 0, f = 1;
    while(ch < '0' || ch > '9'){
        if(ch == '-') f = -1;
        ch = getchar();
    }
    while('0' <= ch && ch <= '9'){
        x = x * 10 + ch - '0';
        ch = getchar();
    }
    return x * f;
}

namespace splay{
    struct Node{
        Node *ch[2], *fa;
        char c;
        bool rev;
        int size;

        inline int which();

        inline void reverse(){
            rev ^= 1;
            swap(ch[0], ch[1]);
        } 

        inline void pd(){
            if(rev){
                ch[0] -> reverse();
                ch[1] -> reverse();
                rev = false;
            }
        }

        inline void maintain(){
            size = 1 + ch[0] -> size + ch[1] -> size;
        }

        Node();
    } *null = new Node, ft[M];

    int tot;

    Node::Node(){
        size = 1;
        c = '\0';
        ch[0] = ch[1] = fa = null;
        rev = false;
    } 

    inline int Node::which(){
        if(fa == null) return -1;
        return this == fa -> ch[1];
    }

    inline void rotate(Node *o){
        Node *p = o -> fa;
        int l = o -> which(), r = l ^ 1;
        o -> fa = p -> fa;
        if(p -> which() != -1) p -> fa -> ch[p -> which()] = o;
        p -> ch[l] = o -> ch[r];
        if(o -> ch[r]) o -> ch[r] -> fa = p;
        o -> ch[r] = p; p -> fa = o;
        o -> ch[r] -> maintain();
        o -> maintain();
    }

    inline void splay(Node *o){
        static stack<Node*> st;
        if(!o) return;
        Node *p = o;
        while(1){
            st.push(p);
            if(p -> which() == -1) break;
            p = p -> fa;
        }
        while(!st.empty()){
            st.top() -> pd();
            st.pop();
        }
        while(o -> which() != -1){
            p = o -> fa;
            if(p -> which() != -1){
                if(p -> which() ^ o -> which()) rotate(o);
                else rotate(p);
            }
            rotate(o);
        }
    }

    inline Node* Kth(Node *o, int k){
        o -> pd();
        int t = o -> ch[0] -> size + 1;
        if(k == t) return o;
        if(k < t) return Kth(o -> ch[0], k);
        return Kth(o -> ch[1], k - t);
    }

    inline Node *merge(Node *a, Node *b){
        if(a == null) return b;
        if(b == null) return a;
        Node *p = Kth(a, a -> size);
        splay(p);
        Node *c = p;
        c -> ch[1] = b;
        b -> fa = c;
        c -> maintain();
        return c;
    }

    inline void split(Node *o, int k, Node* &a, Node* &b){
        if(k == 0){
            a = null;
            b = o;
            return;
        }
        if(k == o -> size){
            a = o;
            b = null;
            return;
        }
        Node *p = Kth(o, k);
        splay(p);
        o = p;
        o -> maintain();
        b = p -> ch[1];
        b -> fa = null;
        p -> ch[1] = null;
        a = p;
        a -> maintain();
    }
} 

using namespace splay;

int main(){
    null -> ch[0] = null -> ch[1] = null -> fa = null;
    null -> c = '\0'; null -> rev = false; null -> size = 0;
    int n = read(); int now = 0;
    Node *root = null;
    char str[10];
    for(int i = 1; i <= n; i ++){
        scanf("%s", str);
        if(str[0] == 'M'){
            int x = read(); now = x;
        }
        else if(str[0] == 'I'){
            int x = read();
            Node *a, *b, *d = null;
            split(root, now, a, b);
            for(int i = 1; i <= x; i ++){
                char ch = getchar();
                Node *c = &ft[++ tot];
                c -> c = ch;
                d = merge(d, c);
            }
            root = merge(a, d);
            root = merge(root, b);
        }
        else if(str[0] == 'D'){
            int x = read();
            Node *a, *b, *c;
            split(root, now, a, b);
            split(b, x, b, c);
            root = merge(a, c);
        }
        else if(str[0] == 'R'){
            int x = read();
            Node *a, *b, *c;
            split(root, now, a, b);
            split(b, x, b, c);
            b -> reverse();
            root = merge(a, b);
            root = merge(root, c);
        }
        else if(str[0] == 'G'){
            Node *p = Kth(root, now + 1);
            printf("%c\n", p -> c);
        }
        else if(str[0] == 'P'){
            now --;
        }
        else{
            now ++;
        }
    }
    return 0;
}

BZOJ1269——[AHOI2006]文本编辑器editor的更多相关文章

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

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

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

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

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

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

  4. [BZOJ1269] [AHOI2006] 文本编辑器editor (splay)

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

  5. 【rope】bzoj1269 [AHOI2006]文本编辑器editor

    维护一个字符串,支持以下操作:   主要就是 成段插入.成段删除.成段翻转.前两个操作很好通过rope实现.第三个操作也不难,维护两个rope,一个正向,一个反向,翻转时swap一下就行了.   ro ...

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

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

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

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

  8. AHOI2006文本编辑器editor

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

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

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

随机推荐

  1. 《----css样式---------浮动带来的影响与解决方法---------------》

    浮动就是让我们的元素脱离标准文档流,目的是为了布局好看! 浮动的现象: 脱离标准文档流被叫做脱流,同时会出现字围现象. 浮动的元素会相互贴靠,而且如果父容器空间足够大,则浮动的元素会正常紧靠也就是后一 ...

  2. [LeetCode] Binary Tree Right Side View 二叉树的右侧视图

    Given a binary tree, imagine yourself standing on the right side of it, return the values of the nod ...

  3. WebAPI中无法获取Session对象的解决办法

    在MVC的WebApi中默认是没有开启Session会话支持的.需要在Global中重写Init方法来指定会话需要支持的类型 public override void Init() { PostAut ...

  4. JavaScript值类型与执行环境和垃圾处理机制

    JavaScript变量分为基本值类型和引用值类型,基本值类型就是以下这五种:Boolean,Number,String,Null,Undefined.基本值类型和引用值类型具有以下特点: 1.基本值 ...

  5. Zabbix监控nginx-rtmp status(json版)

    与前面的文章 zabbix监控nginx-rtmp status(html版)区别只在于取值的页面不一样 http://127.0.0.1:81/control/get/all_streams sta ...

  6. centos tar压缩与解压缩命令大全

    tar命令详解 -c: 建立压缩档案 -x:解压 -t:查看内容 -r:向压缩归档文件末尾追加文件 -u:更新原压缩包中的文件 这五个是独立的命令,压缩解压都要用到其中一个,可以和别的命令连用但只能用 ...

  7. js键盘事件和焦点事件

    键盘事件onkeydown //当键盘按下的时候触发onkeyup //但键盘抬起的时候触发event.keyCode //数字类型 键盘按键的键值功能键 ctrlkey shiftkey altke ...

  8. tomcat 动态部署

    还可以在conf目录下依次创建Catalina\localhost目录,然后在localhost目录下为 test 这个Web应用程序建立 test.xml 文件,编辑这个文件输入以下内容 从Tomc ...

  9. coreseek常见错误原因及解决方法

    coreseek常见错误原因及解决方法 Coreseek 中文全文检索引擎 Coreseek 是一款中文全文检索/搜索软件,以GPLv2许可协议开源发布,基于Sphinx研发并独立发布,专攻中文搜索和 ...

  10. C++类成员在内存中的存储及对齐方式

    前言:数据对齐的基本理论参见文章:http://www.cnblogs.com/MyBlog-Richard/articles/5993448.html 一.空类的大小 C++中空类的大小是1,这是因 ...