让蒟蒻见识到了常数大+滥用STL的危害。

<法一>很久之前的Splay

#include<cstdio>
#include<algorithm>
using namespace std;
#define maxn 110000
#define INF 2147483647
int n,m,l,r,fa[maxn],c[maxn][2],val[maxn],head,tail,root,tot,siz[maxn];
bool delta[maxn];
inline void Maintain(int x)
{
if(x)
siz[x]=siz[c[x][0]]+siz[c[x][1]]+1;
}
inline void Pushdown(int x)
{
if(x&&delta[x])
{
if(c[x][0])
delta[c[x][0]]^=true;
if(c[x][1])
delta[c[x][1]]^=true;
swap(c[x][0],c[x][1]);
delta[x]=false;
}
}
inline void NewNode(int &x,int Fa,int key)
{
x=++tot;
fa[x]=Fa;
val[x]=key;
siz[x]=1;
}
inline void Rotate(int x,bool flag)//flag指左旋还是右旋;
{
int y=fa[x];
Pushdown(x);
Pushdown(y);
c[y][!flag]=c[x][flag];
fa[c[x][flag]]=y;
if(fa[y])
c[fa[y]][c[fa[y]][1]==y]=x;
fa[x]=fa[y];
c[x][flag]=y;
fa[y]=x;
Maintain(y);
}
inline void Splay(int x,int goal)//指要将x旋转为goal节点的子节点 :双旋!!!!
{
if(!x||x==goal)
return;
int y;
Pushdown(x);
while((y=fa[x])!=goal)
{
if(fa[y]==goal)
Rotate(x,c[y][0]==x);
else
{
if((c[y][0]==x)==(c[fa[y]][0]==y))
Rotate(y,c[fa[y]][0]==y);
else
{
Rotate(x,c[y][0]==x);
y=fa[x];
}
Rotate(x,c[y][0]==x);
}
}
Maintain(x);
if(!goal)
root=x;
}
inline int Find(int &root,int key)
{
int x=root;
while(c[x][val[x]<key])
{
if(val[x]==key)
return x;
x=c[x][val[x]<key];
}
return x;
}
inline void Insert(int &root,int key)
{
if(!root)
{
NewNode(root,0,key);
return;
}
int x=Find(root,key);
if(val[x]==key)
{
Splay(x,0);
return;
}
NewNode(c[x][val[x]<key],x,key);
Splay(c[x][val[x]<key],0);
}
inline int Kth(int &root,int K)
{
int x=root;
while(1)
{
Pushdown(x);
int Siz0=siz[c[x][0]];
if(K<=Siz0)
x=c[x][0];
else if(K==Siz0+1)
break;
else
{
K-=(Siz0+1);
x=c[x][1];
}
}
return x;
}
inline void Print(int x)
{
if(!x)
return;
Pushdown(x);
Print(c[x][0]);
printf("%d ",val[x]);
Print(c[x][1]);
Maintain(x);
return;
}
int main()
{
scanf("%d%d",&n,&m);
Insert(root,0);
for(int i=1;i<=n;i++)
Insert(root,i);
Insert(root,n+1);
for(int i=1;i<=m;i++)
{
scanf("%d%d",&l,&r);
Splay(Kth(root,l),0);
Splay(Kth(root,r+2),root);
delta[c[c[root][1]][0]]^=true;
Pushdown(c[c[root][1]][0]);
}
Splay(Kth(root,1),0);
Splay(Kth(root,n+2),root);
Print(c[c[root][1]][0]);
return 0;
}

<法二>块状链表维护翻转标记,维护块形态。50'

#include<cstdio>
#include<list>
#include<vector>
#include<algorithm>
#include<cmath>
using namespace std;
int f,c;
inline void Read(int &x){
c=0;f=1;
for(;c<'0'||c>'9';c=getchar())if(c=='-')f=-1;
for(x=0;c>='0'&&c<='9';c=getchar())(x*=10)+=(c-'0');
x*=f;
}
void Write(int x){
if(x<10)putchar(x+'0');
else{Write(x/10);putchar(x%10+'0');}
}
typedef vector<int>::iterator VER;
struct Node
{
bool Reversed;
vector<int>v;
Node(){Reversed=0;}
};
list<Node>List;
int n,m,tmp[100001],x,y,sz,L,R;
typedef list<Node>::iterator LER;
typedef pair<LER,VER> Point;
inline Point Find(const int &p)
{
int cnt=0; LER i=List.begin();
for(;i!=List.end();++i)
{
cnt+=(*i).v.size();
if(cnt>=p)
{
cnt-=(*i).v.size();
for(VER j=(*i).v.begin();j!=(*i).v.end();++j)
if((++cnt)==p)
return make_pair(i,j);
}
}
--i; return make_pair(i,(*i).v.end());
}
void Makeblock()
{
sz=sqrt(n); int tot=1; if(!sz) sz=1;
for(;tot*sz<n;++tot)
{
LER End=List.insert(List.end(),Node());
(*End).v.assign(tmp+(tot-1)*sz+1,tmp+tot*sz+1);
}
LER End=List.insert(List.end(),Node());
(*End).v.assign(tmp+(tot-1)*sz+1,tmp+n+1);
}
inline void pushdown(const LER &p)
{
if((*p).Reversed)
{
reverse((*p).v.begin(),(*p).v.end());
(*p).Reversed=0;
}
}
inline LER Split(const int &p)
{
Point Pos=Find(p);
pushdown(Pos.first);
if(Pos.second==(*Pos.first).v.begin()) return Pos.first;
LER newB=List.insert(Pos.first,Node());
(*newB).v.assign((*Pos.first).v.begin(),Pos.second);
(*Pos.first).v.erase((*Pos.first).v.begin(),Pos.second);
return Pos.first;
}
void Printans()
{
for(LER i=List.begin();i!=List.end();++i)
{
if((*i).Reversed)
for(VER j=(*i).v.end()-1;j>=(*i).v.begin();--j)
Write(*j),putchar(' ');
else
for(VER j=(*i).v.begin();j!=(*i).v.end();++j)
Write(*j),putchar(' ');
}
puts("");
}
inline void Merge(LER &a,LER &b)
{
pushdown(a);
pushdown(b);
(*a).v.insert((*a).v.begin(),(*b).v.begin(),(*b).v.end());
List.erase(b);
}
inline void MaintainList()
{
LER curB=List.begin();
while(curB!=List.end())
{
LER nexB=curB; ++nexB;
while(nexB!=List.end()
&&(*curB).v.size()+(*nexB).v.size()<=(sz<<1))
{
Merge(nexB,curB);
curB=nexB;
++nexB;
}
++curB;
}
}
inline void Reverse()
{
Read(L); Read(R);
if(L==R) return;
Point Pl=Find(L),Pr=Find(R);
if(Pl.first==Pr.first)
{
pushdown(Pl.first);
reverse(Pl.second,++Pr.second);
return;
}
LER Lb=Split(L),Rb=Split(R+1);
for(LER i=Lb;i!=Rb;++i)
(*i).Reversed^=1;
reverse(Lb,Rb);
MaintainList();
}
int main()
{
Read(n);
Read(m);
for(int i=1;i<=n;++i)
tmp[i]=i;
Makeblock();
for(int i=1;i<=m;++i)
Reverse();
Printans();
return 0;
}

【Splay】【块状链表】bzoj3223 Tyvj 1729 文艺平衡树的更多相关文章

  1. [BZOJ3223]Tyvj 1729 文艺平衡树

    [BZOJ3223]Tyvj 1729 文艺平衡树 试题描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区 ...

  2. BZOJ3223: Tyvj 1729 文艺平衡树 [splay]

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 3595  Solved: 2029[Submit][Sta ...

  3. bzoj3223 Tyvj 1729 文艺平衡树(Splay Tree+区间翻转)

    3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 2202  Solved: 1226[Submit][Sta ...

  4. bzoj3223: Tyvj 1729 文艺平衡树 splay裸题

    splay区间翻转即可 /************************************************************** Problem: 3223 User: walf ...

  5. 【Splay】bzoj3223 Tyvj 1729 文艺平衡树

    #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #i ...

  6. 2018.08.05 bzoj3223: Tyvj 1729 文艺平衡树(非旋treap)

    传送门 经典的平衡树问题,之前已经用splay写过一次了,今天我突发奇想,写了一发非旋treap的版本,发现挺好写的(虽然跑不过splay). 代码: #include<bits/stdc++. ...

  7. BZOJ3223——Tyvj 1729 文艺平衡树

    1.题目大意:维护序列,只有区间翻转这个操作 2.分析:splay的经典操作就是实现区间翻转,就是在splay中有一个标记,表示这个区间被翻转了 然后就是记得各种的操作访问某个点时,记得下传,顺便交换 ...

  8. BZOJ3223: Tyvj 1729 文艺平衡树 无旋Treap

    一开始光知道pushdown却忘了pushup......... #include<cstdio> #include<iostream> #include<cstring ...

  9. BZOJ 3223: Tyvj 1729 文艺平衡树(splay)

    速度居然进前十了...第八... splay, 区间翻转,用一个类似线段树的lazy标记表示是否翻转 ------------------------------------------------- ...

随机推荐

  1. fresco的使用教程

    1.加载依赖 api 'org.xutils:xutils:3.5.0' 2.创建一个myapplication public class MyApplication extends Applicat ...

  2. HDU 多校对抗赛 J Time Zone

    Time Zone Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total S ...

  3. Django随笔 01

    Django 视图 不处理用户输入,而仅仅决定要展现哪些数据给用户: Django 模板 仅仅决定如何展现Django视图指定的数据. dd http://blog.csdn.net/pipisorr ...

  4. word使用宏 在文章中插入源代码进行排版

    1.宏的代码如下. Sub 设置代码表格() ' author: code4101 ' 设置代码表格 宏 ' ' ' 背景色为morning的配色方案,RGB为(229,229,229) ) With ...

  5. DecimalFormat中格式化问题

    一:前言 每天自己斗会看到新的东西,每天自己都会学到东西,但是觉得自己老是想一口吃一个胖子.每天看到一个知识点都把其收藏了,但是自己也没有时间去看,不知道自己到底想感谢什么.真是自己无语,本来说是把自 ...

  6. LCD实验学习笔记(三):WATCH DOG

    看门狗是为了能够防止程序跑飞用的.程序应该定时的去喂狗.如果程序跑飞了,那么就不会去喂狗了.如果超过了喂狗的时间,那么狗就会生成一个信号来reset CPU.一般程序不需要,特殊情况下需要这种机制. ...

  7. Pycharm2017汉化包下载链接

    https://github.com/ewen0930/PyCharm-Chinese/tree/f5a8dc4a8f34398e81a69c69bb046aa4eff27c90 1.首先下载PyCh ...

  8. Google Intern

    申请 事情应该从去年(2013)说起,好基友从百度离职跳到了Google,回学校打印本科成绩单,然后晚上在scuacm群里,结果Dr. zuo问我想去实习么,正好有学长可以内推. 于是乎写了简历,然后 ...

  9. swift对比object-c

    http://www.cocoachina.com/bbs/read.php?tid=204294 WWDC 2014上苹果再次惊世骇俗的推出了新的编程语言SWIFT( 雨燕 ), 这个消息会前没有半 ...

  10. Java坦克大战 (五) 之产生敌方坦克和爆炸效果

    本文来自:小易博客专栏.转载请注明出处:http://blog.csdn.net/oldinaction 在此小易将坦克大战这个项目分为几个版本,以此对J2SE的知识进行回顾和总结,希望这样也能给刚学 ...