tyvj 1729 文艺平衡树
翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4]的话,结果是5 2 3 4 1
接下来m行每行两个数[l,r] 数据保证 1<=l<=r<=n
5 3
1 3
1 3
1 4
- const maxn=+;
- var s,id,fa:array[..maxn] of longint;
- rev:array[..maxn] of boolean;
- c:array[..maxn,..] of longint;
- i,n,m,rt,x,y:longint;
- procedure swap(var x,y:longint);
- var t:longint;
- begin
- t:=x;x:=y;y:=t;
- end;
- procedure pushup(x:longint);
- begin
- s[x]:=s[c[x,]]+s[c[x,]]+;
- end;
- procedure pushdown(x:longint);
- var l,r:longint;
- begin
- l:=c[x,];r:=c[x,];
- if rev[x] then
- begin
- swap(c[x,],c[x,]);
- rev[l]:=not(rev[l]);
- rev[r]:=not(rev[r]);
- rev[x]:=false;
- end;
- end;
- procedure rotate(x:longint;var k:Longint);
- var l,r,y,z:longint;
- begin
- y:=fa[x];z:=fa[y];
- if c[y,]=x then l:= else l:=;r:=l xor ;
- if y=k then k:=x else c[z,ord(c[z,]=y)]:=x;
- fa[x]:=z;fa[y]:=x;fa[c[x,r]]:=y;
- c[y,l]:=c[x,r];c[x,r]:=y;
- pushup(y);pushup(x);
- end;
- procedure splay(x:longint;var k:longint);
- var y,z:longint;
- begin
- while x<>k do
- begin
- y:=fa[x];z:=fa[y];
- if y<>k then
- begin
- if (c[z,]=y) xor (c[y,]=x) then rotate(x,k)
- else rotate(y,k);
- end;
- rotate(x,k);
- end;
- end;
- function find(x,rank:longint):longint;
- var l,r:longint;
- begin
- pushdown(x);l:=c[x,];r:=c[x,];
- if s[l]+=rank then exit(x)
- else if s[l]>=rank then exit(find(l,rank))
- else exit(find(r,rank-s[l]-));
- end;
- procedure rever(l,r:longint);
- var x,y:longint;
- begin
- x:=find(rt,l);y:=find(rt,r+);
- splay(x,rt);splay(y,c[x,]);
- rev[c[y,]]:=not(rev[c[y,]]);
- end;
- procedure build(l,r,f:longint);
- var mid,now,last:longint;
- begin
- if l>r then exit;
- now:=id[l];last:=id[f];
- if l=r then
- begin
- fa[now]:=last;s[now]:=;
- c[last,ord(l>f)]:=now;
- exit;
- end;
- mid:=(l+r)>>;
- build(l,mid-,mid);build(mid+,r,mid);
- now:=id[mid];pushup(mid);
- fa[now]:=last;
- c[last,ord(mid>f)]:=now;
- end;
- procedure init;
- begin
- readln(n,m);
- for i:= to n+ do id[i]:=i;
- build(,n+,);rt:=(n+)>>;
- end;
- procedure main;
- begin
- for i:= to m do
- begin
- readln(x,y);
- rever(x,y);
- end;
- for i:= to n+ do write(find(rt,i)-,' ');
- end;
- begin
- assign(input,'input.txt');assign(output,'output.txt');
- reset(input);rewrite(output);
- init;
- main;
- close(input);close(output);
- end.
tyvj 1729 文艺平衡树的更多相关文章
- [BZOJ3223]Tyvj 1729 文艺平衡树
[BZOJ3223]Tyvj 1729 文艺平衡树 试题描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区 ...
- BZOJ3223: Tyvj 1729 文艺平衡树 [splay]
3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 3595 Solved: 2029[Submit][Sta ...
- BZOJ 3223: Tyvj 1729 文艺平衡树
3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 3628 Solved: 2052[Submit][Sta ...
- bzoj3223 Tyvj 1729 文艺平衡树(Splay Tree+区间翻转)
3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 2202 Solved: 1226[Submit][Sta ...
- BZOJ 3223: Tyvj 1729 文艺平衡树(splay)
速度居然进前十了...第八... splay, 区间翻转,用一个类似线段树的lazy标记表示是否翻转 ------------------------------------------------- ...
- 3223: Tyvj 1729 文艺平衡树
3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 1347 Solved: 724[Submit][Stat ...
- bzoj 3223: Tyvj 1729 文艺平衡树 (splay)
链接: https://www.lydsy.com/JudgeOnline/problem.php?id=3223 题面: 3223: Tyvj 1729 文艺平衡树 Time Limit: 10 S ...
- BZOJ 3223: Tyvj 1729 文艺平衡树-Splay树(区间翻转)模板题
3223: Tyvj 1729 文艺平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 6881 Solved: 4213[Submit][Sta ...
- fhq_treap || BZOJ 3223: Tyvj 1729 文艺平衡树 || Luogu P3391 【模板】文艺平衡树(Splay)
题面: [模板]文艺平衡树(Splay) 题解:无 代码: #include<cstdio> #include<cstring> #include<iostream> ...
随机推荐
- php封装文件上传
这是一个经常在项目中遇到的问题,所以封装一个,分享给大家. 一,前期配置php.ini 如果上传文件超过了php配置那么$_POST或者$_FILES等都是空数组,这点是一个坑,因为那时候就不 ...
- fsockopen/curl/file_get_contents效率比较
前面小节 PHP抓取网络数据的6种常见方法 谈到了 fsockopen,curl与file_get_contents 的使用方法,虽然它们都能达到同一个使用目的,但是它们之间又有什么区别呢? 先谈谈c ...
- json字符串转JSONObject,输出JSONObject问题
json架包:json-lib-2.4-jdk15.jar json字符串(存在null值)转JSONObject 后return JSONObject对象的时候会报错 例如: String str= ...
- windows下vs2013使用C++访问redis
刚开始在windows下使用c++访问reids各种报错,经过网上到处搜方案,终于可以在windows下访问redis了,特将注意事项记录下来: 1.获取redis Window下的开发库源码,从gi ...
- mysql 的rmp安装
新文档/* GitHub stylesheet for MarkdownPad (http://markdownpad.com) *//* Author: Nicolas Hery - http:// ...
- leetcode problem 41 -- First Missing Positive
Given an unsorted integer array, find the first missing positive integer. For example,Given [1,2,0] ...
- (转载)delphi checklistbox用法
delphi checklistbox用法 在Delphi中checklistbox中高亮选中(不论是否Checked)能够进行操作么?删除,上下移动等等 删除:CheckListBox.Delete ...
- hdu 3549 Flow Problem Edmonds_Karp算法求解最大流
Flow Problem 题意:N个顶点M条边,(2 <= N <= 15, 0 <= M <= 1000)问从1到N的最大流量为多少? 分析:直接使用Edmonds_Karp ...
- Hbase实例
import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.had ...
- ColorDialog组件设置字体颜色
1.设置颜色 private void button4_Click(object sender, EventArgs e) { this.colorDialog1.ShowDialog(); this ...