【题目链接】

点击打开链接

【算法】

本题也是Splay区间操作的模板题,不过要比BZOJ 3223要稍微复杂一些,做完此题后,我终于对Splay有了更深入的理解,有“拨开云雾见青天”的感觉

本题还是有许多细节的,笔者花了5h才通过了此题

【代码】

#include <algorithm>
#include <bitset>
#include <cctype>
#include <cerrno>
#include <clocale>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <limits>
#include <list>
#include <map>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <utility>
#include <vector>
#include <cwchar>
#include <cwctype>
#include <stack>
#include <limits.h>
using namespace std;
#define MAXN 100000
const int INF = 2e9; int i,N,M,d,P,x,y,t;
int a[MAXN+];
string opt; template <typename T> inline void read(T &x) {
int f=; x=;
char c = getchar();
for (; !isdigit(c); c = getchar()) { if (c == '-') f = -f; }
for (; isdigit(c); c = getchar()) x = x * + c - '';
x *= f;
} template <typename T> inline void write(T x) {
if (x < ) { putchar('-'); x = -x; }
if (x > ) write(x/);
putchar(x%+'');
} template <typename T> inline void writeln(T x) {
write(x);
puts("");
} struct Splay {
int root,total;
struct Node {
int fa,son[],size,add,Min,val;
bool rev;
} Tree[MAXN*+];
inline bool get(int x) {
return Tree[Tree[x].fa].son[] == x;
}
inline void build(int index,int l,int r) {
int mid = (l + r) >> ;
Tree[index].size = ;
Tree[index].add = Tree[index].rev = ;
Tree[index].val = Tree[index].Min = a[mid];
if (l == r) return;
if (l < mid) {
++total;
Tree[index].son[] = total;
Tree[total].fa = index;
build(total,l,mid-);
Tree[index].size += Tree[Tree[index].son[]].size;
Tree[index].Min = min(Tree[index].Min,Tree[Tree[index].son[]].Min);
}
if (mid < r) {
++total;
Tree[index].son[] = total;
Tree[total].fa = index;
build(total,mid+,r);
Tree[index].size += Tree[Tree[index].son[]].size;
Tree[index].Min = min(Tree[index].Min,Tree[Tree[index].son[]].Min);
}
}
inline void new_node(int index,int x,int f) {
Tree[index].rev = ;
Tree[index].size = ;
Tree[index].val = Tree[index].Min = x;
Tree[index].add = ;
Tree[index].fa = f;
Tree[index].son[] = Tree[index].son[] = ;
}
inline int query_pos(int x) {
int index = root;
while (true) {
pushdown(index);
if (x > Tree[Tree[index].son[]].size) {
x -= Tree[Tree[index].son[]].size;
if (x == ) return index;
--x;
index = Tree[index].son[];
} else index = Tree[index].son[];
}
}
inline void pushdown(int index) {
if (Tree[index].rev) {
swap(Tree[index].son[],Tree[index].son[]);
Tree[Tree[index].son[]].rev ^= ;
Tree[Tree[index].son[]].rev ^= ;
Tree[index].rev = ;
}
if (Tree[index].add) {
Tree[Tree[index].son[]].val += Tree[index].add;
Tree[Tree[index].son[]].val += Tree[index].add;
Tree[Tree[index].son[]].add += Tree[index].add;
Tree[Tree[index].son[]].add += Tree[index].add;
Tree[Tree[index].son[]].Min += Tree[index].add;
Tree[Tree[index].son[]].Min += Tree[index].add;
Tree[index].add = ;
}
}
inline void update(int index) {
Tree[index].size = Tree[Tree[index].son[]].size + Tree[Tree[index].son[]].size + ;
Tree[index].Min = Tree[index].val;
if (Tree[index].son[]) Tree[index].Min = min(Tree[index].Min,Tree[Tree[index].son[]].Min);
if (Tree[index].son[]) Tree[index].Min = min(Tree[index].Min,Tree[Tree[index].son[]].Min);
}
inline void splay(int x,int pos) {
int f;
for (f = Tree[x].fa; (f = Tree[x].fa) != pos; rotate(x)) {
if (Tree[f].fa != pos)
rotate(get(f) == get(x) ? (f) : (x));
}
if (!pos) root = x;
}
inline void rotate(int x) {
int f = Tree[x].fa,g = Tree[f].fa,
tmpx = get(x),tmpf = get(f);
pushdown(f); pushdown(x);
if (!f) return;
Tree[f].son[tmpx] = Tree[x].son[tmpx^];
if (Tree[x].son[tmpx^]) Tree[Tree[x].son[tmpx^]].fa = f;
Tree[x].son[tmpx^] = f;
Tree[f].fa = x;
Tree[x].fa = g;
if (g) Tree[g].son[tmpf] = x;
update(f);
update(x);
}
inline void Insert(int p,int val) {
int x = query_pos(p),
y = query_pos(p+);
splay(x,); splay(y,root);
new_node(++total,val,Tree[root].son[]);
Tree[Tree[root].son[]].son[] = total;
update(Tree[root].son[]);
update(root);
}
inline void erase(int p) {
int x = query_pos(p-),
y = query_pos(p+);
splay(x,); splay(y,root);
Tree[Tree[root].son[]].son[] = ;
update(Tree[root].son[]);
update(root);
}
inline void add(int l,int r,int v) {
int x = query_pos(l-),
y = query_pos(r+);
splay(x,); splay(y,root);
Tree[Tree[Tree[root].son[]].son[]].val += v;
Tree[Tree[Tree[root].son[]].son[]].add += v;
Tree[Tree[Tree[root].son[]].son[]].Min += v;
update(Tree[root].son[]);
update(root);
}
inline void reverse(int l,int r) {
int x = query_pos(l-),
y = query_pos(r+);
splay(x,); splay(y,root);
Tree[Tree[Tree[root].son[]].son[]].rev ^= ;
}
inline int query_min(int l,int r) {
int x = query_pos(l-),
y = query_pos(r+);
splay(x,); splay(y,root);
return Tree[Tree[Tree[root].son[]].son[]].Min;
}
inline void revolve(int l,int r,int t) {
int x = query_pos(r-t),
y = query_pos(r+);
splay(x,); splay(y,root);
int tmp = Tree[Tree[root].son[]].son[];
Tree[Tree[root].son[]].son[] = ;
update(Tree[root].son[]);
update(root);
x = query_pos(l-);
y = query_pos(l);
splay(x,); splay(y,root);
Tree[Tree[root].son[]].son[] = tmp;
Tree[tmp].fa = Tree[root].son[];
update(Tree[root].son[]);
update(root);
}
} T; int main() { read(N); T.root = T.total = ;
for (i = ; i <= N + ; i++) read(a[i]);
a[] = a[N+] = INF;
T.build(,,N+); read(M);
while (M--) {
cin >> opt;
if (opt[] == 'A') {
read(x); read(y); read(d);
if (x > y) swap(x,y);
T.add(x+,y+,d);
} else if (opt[] == 'R' && opt[] == 'E' && opt[] == 'V' && opt[] == 'E'){
read(x); read(y);
if (x > y) swap(x,y);
T.reverse(x+,y+);
} else if (opt[] == 'R' && opt[] == 'E' && opt[] == 'V' && opt[] == 'O') {
read(x); read(y); read(t);
if (x > y) swap(x,y);
t = (t % (y - x + ) + y - x + ) % (y - x + );
if (!t) continue;
T.revolve(x+,y+,t);
} else if (opt[] == 'I') {
read(x); read(P);
T.Insert(x+,P);
} else if (opt[] == 'D') {
read(x);
T.erase(x+);
} else if (opt[] == 'M') {
read(x); read(y);
if (x > y) swap(x,y);
writeln(T.query_min(x+,y+));
}
} return ; }

【POJ 3580】 SuperMemo的更多相关文章

  1. 【POJ 3580】SuperMemo Splay

    题意 给定$n$个数,$m$个询问,每次在$[L,R]$区间加上一个数,或者反转一个区间$[L,R]$,或者循环右移区间$[L,R]$共$T$次,或者在第$x$个数后插入一个数$p$,或者删除第$x$ ...

  2. bzoj 2295: 【POJ Challenge】我爱你啊

    2295: [POJ Challenge]我爱你啊 Time Limit: 1 Sec  Memory Limit: 128 MB Description ftiasch是个十分受女生欢迎的同学,所以 ...

  3. 【链表】BZOJ 2288: 【POJ Challenge】生日礼物

    2288: [POJ Challenge]生日礼物 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 382  Solved: 111[Submit][S ...

  4. BZOJ2288: 【POJ Challenge】生日礼物

    2288: [POJ Challenge]生日礼物 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 284  Solved: 82[Submit][St ...

  5. BZOJ2293: 【POJ Challenge】吉他英雄

    2293: [POJ Challenge]吉他英雄 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 80  Solved: 59[Submit][Stat ...

  6. BZOJ2287: 【POJ Challenge】消失之物

    2287: [POJ Challenge]消失之物 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 254  Solved: 140[Submit][S ...

  7. BZOJ2295: 【POJ Challenge】我爱你啊

    2295: [POJ Challenge]我爱你啊 Time Limit: 1 Sec  Memory Limit: 128 MBSubmit: 126  Solved: 90[Submit][Sta ...

  8. BZOJ2296: 【POJ Challenge】随机种子

    2296: [POJ Challenge]随机种子 Time Limit: 1 Sec  Memory Limit: 128 MBSec  Special JudgeSubmit: 114  Solv ...

  9. BZOJ2292: 【POJ Challenge 】永远挑战

    2292: [POJ Challenge ]永远挑战 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 513  Solved: 201[Submit][ ...

随机推荐

  1. (43)C#网络1 http

    一.HttpClient类 用于发送http请求,并接受请求的相应 (从4.5起开始可用) using System.Net.Http; 异步调用 HttpClient httpClient = ne ...

  2. Struts2 文件上传和下载

    首先我们写一个单文件长传的fileupload.jsp: <body> <s:fielderror></s:fielderror> <!-- 报错信息 --& ...

  3. iOS APP 的生命周期

    1.在手机桌面上点击APP图标 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDi ...

  4. aSmack连接server异常smack.SmackException$ ConnectionException thrown by XMPPConnection.connect();

    以下是我在研究asmack4.0出现的异常 06-17 12:02:56.924: W/System.err(10622): org.jivesoftware.smack.SmackException ...

  5. [转]Visual Studio 2012 编译错误【error C4996: 'scanf': This function or variable may be unsafe. 】的解决方案

    原文地址:http://www.cnblogs.com/gb2013/archive/2013/03/05/SecurityEnhancementsInTheCRT.html 在VS 2012 中编译 ...

  6. [Testing] Static Analysis Testing JavaScript Applications

    The static code analysis and linting tool ESLint is the de-facto standard for linting JavaScript pro ...

  7. Android新技术学习——阿里巴巴免Root无侵入AOP框架Dexposed

    阿里巴巴无线事业部近期开源的Android平台下的无侵入运行期AOP框架Dexposed,该框架基于AOP思想,支持经典的AOP使用场景.可应用于日志记录,性能统计,安全控制.事务处理.异常处理等方面 ...

  8. lua 获取当前执行目录 lfs 库

    lua lfs 库 lfs.attributes(filepath [, aname]) 获取路径指定属性 lfs.chdir(path) 改变当前工作目录,成功返回true,失败返回nil加上错误信 ...

  9. FragmentSharedFabTransition

    https://github.com/lgvalle/FragmentSharedFabTransition

  10. 博客系统-评论or评论树

    url配置 url(r'^commentTree/(?P<article_id>\d+)/',views.commentTree), url(r'^(?P<username>. ...