传送门:

Treap 版本:

//OJ 1999
//by Cydiater
//2016.8.30
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <string>
#include <queue>
#include <map>
#include <ctime>
#include <cmath>
#include <algorithm>
#include <string>
#include <iomanip>
using namespace std;
#define ll long long
#define up(i,j,n)    for(int i=j;i<=n;i++)
#define down(i,j,n)    for(int i=j;i>=n;i--)
const int MAXN=1e5+5;
const int oo=0x3f3f3f3f;
inline ll read(){
    char ch=getchar();ll x=0,f=1;
    while(ch>'9'||ch<'0'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int N,op,num,root=0,tol=0,ans=0;
struct node{
    int leftt,rightt,v,cnt,rnd,siz;
}t[MAXN];
namespace solution{
    void updata(int k){
        t[k].siz=t[t[k].leftt].siz+t[t[k].rightt].siz+t[k].cnt;
    }
    void lefturn(int &k){
        int tt=t[k].rightt;t[k].rightt=t[tt].leftt;t[tt].leftt=k;
        t[tt].siz=t[k].siz;updata(k);k=tt;
    }
    void righturn(int &k){
        int tt=t[k].leftt;t[k].leftt=t[tt].rightt;t[tt].rightt=k;
        t[tt].siz=t[k].siz;updata(k);k=tt;
    }
    void insert(int &k,int x){
        if(k==0){
            tol++;k=tol;t[k].siz=t[k].cnt=1;
            t[k].v=x;t[k].rnd=rand();
            return;
        }
        t[k].siz++;
        if(t[k].v==x)        t[k].cnt++;
        else if(x>t[k].v){
            insert(t[k].rightt,x);
            if(t[t[k].rightt].rnd<t[k].rnd)lefturn(k);
        }else{
            insert(t[k].leftt,x);
            if(t[t[k].leftt].rnd<t[k].rnd)righturn(k);
        }
    }
    void del(int &k,int x){
        if(k==0)    return;
        if(t[k].v==x){
            if(t[k].cnt>1){t[k].cnt--;t[k].siz--;return;}
            if(t[k].leftt*t[k].rightt==0)k=t[k].leftt+t[k].rightt;
            else if(t[t[k].leftt].rnd<t[t[k].rightt].rnd){
                righturn(k);del(k,x);
            }else{
                lefturn(k);del(k,x);
            }
        }else if(x>t[k].v){
            t[k].siz--;
            del(t[k].rightt,x);
        }else{
            t[k].siz--;
            del(t[k].leftt,x);
        }
    }
    int query_rank(int k,int x){
        if(k==0)return 0;
        if(t[k].v==x)        return t[t[k].leftt].siz+1;
        else if(x>t[k].v)    return t[t[k].leftt].siz+t[k].cnt+query_rank(t[k].rightt,x);
        else                 return query_rank(t[k].leftt,x);
    }
    int query_num(int k,int x){
        if(k==0)                                return 0;
        if(x<=t[t[k].leftt].siz)                return query_num(t[k].leftt,x);
        else if(x>t[t[k].leftt].siz+t[k].cnt)    return query_num(t[k].rightt,x-(t[t[k].leftt].siz+t[k].cnt));
        else                                     return t[k].v;
    }
    void query_pre(int k,int x){
        if(k==0)        return;
        if(t[k].v<x){
            ans=t[k].v;
            query_pre(t[k].rightt,x);
        }else query_pre(t[k].leftt,x);
    }
    void query_nxt(int k,int x){
        if(k==0)        return;
        if(t[k].v>x){
            ans=t[k].v;
            query_nxt(t[k].leftt,x);
        }else query_nxt(t[k].rightt,x);
    }
    void slove(){
        N=read();
        up(i,1,N){
            op=read();num=read();
            if(op==1)insert(root,num);
            if(op==2)del(root,num);
            if(op==3)printf("%d\n",query_rank(root,num));
            if(op==4)printf("%d\n",query_num(root,num));
            if(op==5){
                query_pre(root,num);
                printf("%d\n",ans);
            }
            if(op==6){
                query_nxt(root,num);
                printf("%d\n",ans);
            }
        }
    }
}
int main(){
    //freopen("input.in","r",stdin);
    using namespace solution;
    slove();
    return 0;
}

Splay 版本:

//BZOJ 3224
//by Cydiater
//2016.9.3
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <algorithm>
#include <queue>
#include <map>
#include <ctime>
#include <cmath>
#include <iomanip>
using namespace std;
#define ll long long
#define up(i,j,n)        for(int i=j;i<=n;i++)
#define down(i,j,n)        for(int i=j;i>=n;i--)
const int MAXN=1e6+5;
inline int read(){
    char ch=getchar();int x=0,f=1;
    while(ch>'9'||ch<'0'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int root=0,tol=0,N,op,num;
struct SplayTree{
    int son[2],siz,cnt,fa,v;
}t[MAXN];
namespace solution{
    inline int get(int x){return x==t[t[x].fa].son[1];}//get left or right son
    inline void clear(int x){
        t[x].son[0]=t[x].son[1]=t[x].cnt=t[x].v=t[x].fa=t[x].siz=0;
    }//reset node after deleted
    inline void updata(int x){//updata node after rotated
        if(x){
            t[x].siz=t[x].cnt;
            if(t[x].son[0])t[x].siz+=t[t[x].son[0]].siz;
            if(t[x].son[1])t[x].siz+=t[t[x].son[1]].siz;
        }
    }
    inline void rotate(int x){//rotate now node to root
        int old=t[x].fa,oldf=t[old].fa,which=get(x);
        t[old].son[which]=t[x].son[which^1];t[t[old].son[which]].fa=old;
        t[old].fa=x;t[x].son[which^1]=old;
        t[x].fa=oldf;
        if(oldf)t[oldf].son[t[oldf].son[1]==old]=x;
        updata(old);updata(x);
    }
    inline void splay(int x){
        for(int fa;(fa=t[x].fa);rotate(x))if(t[fa].fa)
        rotate((get(x)==get(fa)?fa:x));root=x;
    }
    inline void insert(int v){
        if(root==0){
            root=++tol;
            t[root].son[0]=t[root].son[1]=t[root].fa=0;
            t[root].v=v;t[root].cnt=t[root].siz=1;
            return;
        }
        int now=root,fa=0;
        while(1){
            if(t[now].v==v){
                t[now].cnt++;updata(now);updata(fa);
                splay(now);break;
            }
            fa=now;now=t[now].son[t[now].v<v];
            if(now==0){
                now=++tol;
                t[now].son[0]=t[now].son[1]=0;t[now].v=v;
                t[now].siz=t[now].cnt=1;t[now].fa=fa;
                t[fa].son[t[fa].v<v]=tol;
                updata(fa);
                splay(now);
                break;
            }
        }
    }
    inline int find(int v){
        int ans=0,now=root;
        while(1){
            if(v<t[now].v)now=t[now].son[0];
            else{
                ans+=(t[now].son[0]?t[t[now].son[0]].siz:0);
                if(v==t[now].v){splay(now);return ans+1;}
                ans+=t[now].cnt;
                now=t[now].son[1];
            }
        }
    }
    inline int get_rank(int x){
        int now=root;
        while(1){
            if(t[now].son[0]&&x<=t[t[now].son[0]].siz)now=t[now].son[0];
            else{
                int tmp=(t[now].son[0]?t[t[now].son[0]].siz:0)+t[now].cnt;
                if(x<=tmp)    return t[now].v;
                x-=tmp;now=t[now].son[1];
            }
        }
    }
    inline int pre(){
        int now=t[root].son[0];
        while(t[now].son[1])now=t[now].son[1];
        return now;
    }
    inline int nxt(){
        int now=t[root].son[1];
        while(t[now].son[0])now=t[now].son[0];
        return now;
    }
    inline void del(int x){
        int whatever=find(x);
        if(t[root].cnt>1){
            t[root].cnt--;
            t[root].siz--;
            return;
        }
        if(t[root].son[0]+t[root].son[1]==0){
            clear(root);root=0;
            return;
        }
        if(!t[root].son[0]){
            int oldroot=root;root=t[root].son[1];t[root].fa=0;
            clear(oldroot);return;
        }else if(!t[root].son[1]){
            int oldroot=root;root=t[root].son[0];t[root].fa=0;
            clear(oldroot);return;
        }
        int leftbig=pre(),oldroot=root;
        splay(leftbig);
        t[t[oldroot].son[1]].fa=root;
        t[root].son[1]=t[oldroot].son[1];
        clear(oldroot);
        updata(root);
        return;
    }
    void debug(int now){
        printf("now=%d t[now].son[0]=%d t[now].son[1]=%d t[now].siz=%d t[now].cnt=%d t[now].fa=%d t[now].v=%d\n",now,t[now].son[0],t[now].son[1],t[now].siz,t[now].cnt,t[now].fa,t[now].v);
        if(t[now].son[0])debug(t[now].son[0]);
        if(t[now].son[1])debug(t[now].son[1]);
    }
}
int main(){
    //freopen("input.in","r",stdin);
    using namespace solution;
    N=read();
    while(N--){
        op=read();num=read();
        if(op==1)insert(num);
        if(op==2)del(num);
        if(op==3)printf("%d\n",find(num));
        if(op==4)printf("%d\n",get_rank(num));
        if(op==5){
            insert(num);printf("%d\n",t[pre()].v);del(num);
        }
        if(op==6){
            insert(num);printf("%d\n",t[nxt()].v);del(num);
        }
        //debug(root);
        //puts("");
    }
    return 0;
}

关于Splay写的很好的一个博客:

传送门

BZOJ3224 普通平衡树的更多相关文章

  1. [BZOJ3224]普通平衡树(旋转treap,STL-vector)

    3224: Tyvj 1728 普通平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 20328  Solved: 8979[Submit][St ...

  2. [bzoj3224]普通平衡树/3223文艺平衡树

    这是一道很普通的题.. 最近花了很多时间来想要去干什么,感觉自己还是太拿衣服 做这道题是因为偶尔看到了lavender的blog和她的bzoj早期AC记录,就被题目深深地吸引到了,原因有二: 自己sp ...

  3. BZOJ3224普通平衡树【Splay】

    3224: Tyvj 1728 普通平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 11751  Solved: 5013 Descriptio ...

  4. [TYVJ1728/BZOJ3224]普通平衡树-替罪羊树

    Problem 普通平衡树 Solution 本题是裸的二叉平衡树.有很多种方法可以实现.这里打的是替罪羊树模板. 此题极其恶心. 前驱后继模块需要利用到rank模块来换一种思路求. 很多细节的地方容 ...

  5. [转载]无旋treap:从好奇到入门(例题:bzoj3224 普通平衡树)

    转载自ZZH大佬,原文:http://www.cnblogs.com/LadyLex/p/7182491.html 今天我们来学习一种新的数据结构:无旋treap.它和splay一样支持区间操作,和t ...

  6. [您有新的未分配科技点]无旋treap:从好奇到入门(例题:bzoj3224 普通平衡树)

    今天我们来学习一种新的数据结构:无旋treap.它和splay一样支持区间操作,和treap一样简单易懂,同时还支持可持久化. 无旋treap的节点定义和treap一样,都要同时满足树性质和堆性质,我 ...

  7. bzoj3224 普通平衡树(c++vector)

    Tyvj 1728 普通平衡树 2014年8月23日6,4365 Description 您需要写一种数据结构(可参考题目标题),来维护一些数,其中需要提供以下操作:1. 插入x数2. 删除x数(若有 ...

  8. BZOJ3224普通平衡树——非旋转treap

    题目: 此为平衡树系列第一道:普通平衡树您需要写一种数据结构,来维护一些数,其中需要提供以下操作:1. 插入x数2. 删除x数(若有多个相同的数,因只删除一个)3. 查询x数的排名(若有多个相同的数, ...

  9. BZOJ3224普通平衡树——旋转treap

    题目: 此为平衡树系列第一道:普通平衡树您需要写一种数据结构,来维护一些数,其中需要提供以下操作:1. 插入x数2. 删除x数(若有多个相同的数,因只删除一个)3. 查询x数的排名(若有多个相同的数, ...

  10. BZOJ3224普通平衡树

    洛谷题面链接 很早就过了,太久没打了,原本是在noip前用来练emacs的手感的. noip炸了,就滚回来更博客了(安排的计数任务刷不动,学不会容斥,打发时间...) 众所周知,splay是个好算法, ...

随机推荐

  1. jsp实现一条横线中间有字的样式

    实现样式: ---------------------------------------------------- xxxxxx ---------------------------------- ...

  2. Linux进程间通信之管道

    1,进程间通信 (IPC ) Inter-Process Communication 比较好理解概念的就是进程间通信就是在不同进程之间传播或交换信息. 2,linux下IPC机制的分类:管道.信号.共 ...

  3. ModernUI教程:主题资源引用

    已经完成的主题资源列表 提示:请关注Modern UI的开发工作,资源文件可能在演进版本中新增和删除. 资源列表可以去访问原文,原文可复制,该表未改动原文. 查看目录

  4. 系统升级日记(1)- 升级到SQL Server 2012

    最近一段时间在公司忙于将各类系统进行升级,其最主要的目标有两个,一个是将TFS2010升级到TFS2013,另外一个是将SharePoint 2010升级到SharePoint 2013.本记录旨在记 ...

  5. 3Dmax 创建物体

    扩展基本体-切角长方体: 增加边: 删除边:在边选择模式下, 选择想要删除的边, 按下ctrl+backsapce

  6. 转一篇Unity客户端与Java服务器的通信

    转自:http://www.programering.com/a/MTNxYDMwATQ.html A few days ago a friend asked me about Unity3D ins ...

  7. Ubuntu下安装支付宝安全控件

    在淘宝购物时,安装支付宝安全控件.下载了一个文件.tar.gz(非常小的一个文件). tar -zxvf 解压之,只有一个aliedit.sh文件,运行这个文件就安装成功了,重启firefox就可以用 ...

  8. linux系统数据落盘之细节

      本文节选自这里,原文以mysql innodb系统为例,介绍了数据经过的各层级的buffer和cache,其它系统也有相似的原理,摘录于此. 3.  VFS层 该层的缓冲都放在主机内存中,它的目的 ...

  9. Linux_rsyslogd日志服务(二)

    一.rsyslogd日志统一格式 基本日志格式包含以下四列: 1.事件产生的时间 2.发生事件的服务器的主机名 3.产生事件的服务名或程序名 4.事件的具体信息 二./etc/rsyslog.conf ...

  10. Entity Framework在WCF中序列化的问题

    问题描述 如果你在WCF中用Entity Framework来获取数据并返回实体对象,那么对下面的错误一定不陌生. 接收对 http://localhost:5115/ReService.svc 的 ...