博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【BZOJ】3223: Tyvj 1729 文艺平衡树(splay)
阅读量:5918 次
发布时间:2019-06-19

本文共 2889 字,大约阅读时间需要 9 分钟。

默默的。。

#include 
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;#define rep(i, n) for(int i=0; i<(n); ++i)#define for1(i,a,n) for(int i=(a);i<=(n);++i)#define for2(i,a,n) for(int i=(a);i<(n);++i)#define for3(i,a,n) for(int i=(a);i>=(n);--i)#define for4(i,a,n) for(int i=(a);i>(n);--i)#define CC(i,a) memset(i,a,sizeof(i))#define read(a) a=getint()#define print(a) printf("%d", a)#define dbg(x) cout << (#x) << " = " << (x) << endl#define error(x) (!(x)?puts("error"):0)#define rdm(x, i) for(int i=ihead[x]; i; i=e[i].next)inline const int getint() { int r=0, k=1; char c=getchar(); for(; c<'0'||c>'9'; c=getchar()) if(c=='-') k=-1; for(; c>='0'&&c<='9'; c=getchar()) r=r*10+c-'0'; return k*r; }struct node *null;struct node { node *f, *c[2]; int s, k; bool rev; node(int _k=0) { f=c[0]=c[1]=null; k=_k; s=1; rev=0; } bool d() { return f->c[1]==this; } void setc(node *x, bool d) { c[d]=x; x->f=this; } void pushup() { s=1+c[0]->s+c[1]->s; } void upd() { if(this==null) return; rev=!rev; swap(c[0], c[1]); } void pushdown() { if(rev) rev=0, c[0]->upd(), c[1]->upd(); }}*root;void rot(node *x) { node *f=x->f; f->pushdown(); x->pushdown(); bool d=x->d(); f->f->setc(x, f->d()); f->setc(x->c[!d], d); x->setc(f, !d); f->pushup(); if(f==root) root=x;}void splay(node *x, node *f=null) { x->pushdown(); while(x->f!=f) if(x->f->f==f) rot(x); else x->d()==x->f->d()?(rot(x->f), rot(x)):(rot(x), rot(x)); x->pushup();}node *sel(node *x, int k) { if(x==null) return null; x->pushdown(); int s=x->c[0]->s; if(s==k) return x; if(s
c[1], k-s-1); return sel(x->c[0], k);}node *getrange(int l, int r) { splay(sel(root, l-1)); splay(sel(root, r+1), root); return root->c[1]->c[0];}void build(int l, int r, node *&x) { if(l>r) return; int mid=(l+r)>>1; x=new node(mid); if(l==r) return; build(l, mid-1, x->c[0]); build(mid+1, r, x->c[1]); if(l<=mid-1) x->c[0]->f=x; if(mid+1<=r) x->c[1]->f=x; x->pushup();}int n, m;void init() { null=new node; null->s=0; null->f=null->c[0]=null->c[1]=null; root=new node; root->setc(new node, 1); node *x; build(1, n, x); root->c[1]->setc(x, 0); root->c[1]->pushup(); root->pushup();}void rev() { int l=getint(), r=getint(); node *x=getrange(l, r); x->upd();}void Pr(node *x) { if(x==null) return; x->pushdown(); Pr(x->c[0]); printf("%d ", x->k); Pr(x->c[1]); }void P() { node *x=getrange(1, n); Pr(x);}int main() { read(n); int m=getint(); init(); while(m--) rev(); P(); return 0;}

  

 


 

 

Description

 

您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 4 1 

Input

第一行为n,m n表示初始序列有n个数,这个序列依次是(1,2……n-1,n)  m表示翻转操作次数

接下来m行每行两个数[l,r] 数据保证 1<=l<=r<=n 

 

Output

 

输出一行n个数字,表示原始序列经过m次变换后的结果 

 

Sample Input

5 3
1 3
1 3
1 4

Sample Output

4 3 2 1 5

HINT

 

N,M<=100000

 

Source

 

转载地址:http://fmfvx.baihongyu.com/

你可能感兴趣的文章
component SMS_WSUS_SYNC_MANAGER on computer NLACC00W3SD001 reported: SMS WSUS
查看>>
zabbix专题:第十章 zabbix自动发现功能详解
查看>>
2012过年回家:火车站步步惊心
查看>>
Android第二十二期 - QQ5.0版本最简洁实现方法
查看>>
分布式爬虫系统设计、实现与实战:爬取京东、苏宁易购全网手机商品数据+MySQL、HBase存储...
查看>>
Android Studio 第六十期 - Android推流直播(斗鱼部分页面功能)
查看>>
如何在数据库中存储一棵树
查看>>
enq: SQ – contention、cursor: pin S wait on X等事件引发的故障处理
查看>>
通过两个案例初步了解Linux下selinux的安全机制工作机制
查看>>
使用Python的twisted和socket模块实现端口的负载分发
查看>>
JMX rmi的一些问题
查看>>
JQuery UI - tabs
查看>>
innerHTML与innerText的异同
查看>>
[转]iOS WebKit browsers and auto-zooming form controls
查看>>
Linux内核RPC请求过程
查看>>
An interview question from MicroStrategy
查看>>
Spring4 MVC Hibernate4集成
查看>>
[CLR via C#]13. 接口
查看>>
Orchard之生成新模板
查看>>
CASE表达式的使用
查看>>