【UOJ】【UR #2】猪猪侠再战括号序列(splay/贪心)

http://uoj.ac/problem/31

纪念伟大的没有调出来的splay。。。

竟然那个find那里写错了!!!!!!!!!!!!!

以后要记住:一定要好好想过!

(正解的话我就不写了,太简单了。。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <string>
#include <iostream>
#include <algorithm>
#include <queue>
#include <set>
#include <map>
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; }

const int N=200005;
struct node *null;
struct node {
	node *c[2], *f;
	int s, k, sum;
	bool rev;
	node(int _k=0) { c[0]=c[1]=f=null; s=1; k=sum=_k; rev=0; }
	void pushup() { s=1+c[0]->s+c[1]->s; sum=k+c[0]->sum+c[1]->sum; }
	void setc(node *x, bool d) { c[d]=x; x->f=this; }
	bool d() { return f->c[1]==this; }
	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();
}
void Pr(node *x) {
	if(x==null) return;
	Pr(x->c[0]);
	printf("%c", x->k?‘(‘:‘)‘);
	Pr(x->c[1]);
}
void P(node *x=root) {
	Pr(x); puts("");
}
void init() { null=new node; null->s=0; null->c[0]=null->c[1]=null->f=null; root=null; }
void build(char *s, int l, int r, node *&x) {
	if(l>r) return;
	int mid=(l+r)>>1;
	x=new node(s[mid]==‘(‘);
	if(l==r) return;
	build(s, l, mid-1, x->c[0]);
	build(s, 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();
}
void build(char *s) {
	int len=strlen(s);
	node *x=null;
	root=new node();
	x=new node();
	root->setc(x, 1);
	x=new node();
	build(s-1, 1, len, x);
	root->c[1]->setc(x, 0);
	root->c[1]->pushup();
	root->pushup();
}
node* find(node *x) {
	if(x==null) return null;
	x->pushdown();
	if(x->c[0]->sum==0 && x->k) return x; //这里啊啊啊
	if(x->c[0]->sum) return find(x->c[0]);
	return find(x->c[1]);
}
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<k) return sel(x->c[1], k-s-1);
	else 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];
}
int getpos(int l, int r) {
	node *x=getrange(l, r);
	x=find(x); //dbg(x->k);
	splay(x);
	return x->c[0]->s;
}
void fix(int l, int r) {
	node *x=getrange(l, r); //P(x);
	x->upd();
	root->c[1]->pushup();
	root->pushup();
}
int getinf(int l) {
	node *r=getrange(l, l);
	return r->k;
}
char s[N];
int ans;
int x[N], y[N], n, len;
// int ifind(int now) {
// 	int ret=now;
// 	while(ret<=len) if(s[ret]==‘(‘) return ret; else ++ret;
// 	return 0;
// }
// void fix(int l, int r) {
// 	while(l<r) swap(s[l], s[r]), ++l, --r;
// }
int main() {
	scanf("%s", s+1);
	init();
	len=strlen(s+1);
	//dbg(s+1);
	n=len>>1;
	build(s+1);
	//dbg(getpos(2, len));
	//fix(1, getpos(2, len));
	//node *xx=sel(root, 1); dbg(xx->s); P();
	for1(i, 1, n) {
		//printf("%c\n", getinf(i)?‘(‘:‘)‘);
		if(getinf(i)!=1) {
			++ans;
			int pos=getpos(i+1, len);
			if(!pos) { puts("error"); return 0; }
			x[ans]=i;
			y[ans]=pos;
			fix(i, pos);
			//dbg(s+1);
		}
		//P();
	}
	printf("%d\n", ans);
	for1(i, 1, ans) {
		printf("%d %d\n", x[i], y[i]);
	}
	return 0;
}

  



【UOJ】【UR #2】猪猪侠再战括号序列(splay/贪心)

时间: 2024-12-08 02:13:20

【UOJ】【UR #2】猪猪侠再战括号序列(splay/贪心)的相关文章

uoj #31. 【UR #2】猪猪侠再战括号序列 贪心

#31. [UR #2]猪猪侠再战括号序列 Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://uoj.ac/problem/31 Description 大家好我是来自百度贴吧的_叫我猪猪侠,英文名叫_CallMeGGBond. 我不曾上过大学,但这不影响我对离散数学.复杂性分析等领域的兴趣:尤其是括号序列理论,一度令我沉浸其中,无法自拔.至于OI算法竞赛,我年轻时确有参加,虽仅获一枚铜牌,但我素性淡泊,毫不在意,毕竟那所谓FFT.仙人掌之类

UOJ#31 【UR #2】猪猪侠再战括号序列

传送门http://uoj.ac/problem/31 大家好我是来自百度贴吧的_叫我猪猪侠,英文名叫_CallMeGGBond. 我不曾上过大学,但这不影响我对离散数学.复杂性分析等领域的兴趣:尤其是括号序列理论,一度令我沉浸其中,无法自拔.至于OI算法竞赛,我年轻时确有参加,虽仅获一枚铜牌,但我素性淡泊,毫不在意,毕竟那所谓FFT.仙人掌之类,只是些雕虫小技罢了,登不上大雅之堂的:只有括号序列才会真正激发我的研究热情. 我曾天真地以为,凭借我的学识与才能,足可以在这世间安身立命:然而直到沦落

BZOJ 2209: [Jsoi2011]括号序列 [splay 括号]

2209: [Jsoi2011]括号序列 Time Limit: 20 Sec  Memory Limit: 259 MBSubmit: 1111  Solved: 541[Submit][Status][Discuss] Description Input 输入数据的第一行包含两个整数N和Q,分别表示括号序列的长度,以及操作的个数. 第二行包含一个长度为N的括号序列. 接下来Q行,每行三个整数t.x和y,分别表示操作的类型.操作的开始位置和操作的结 束位置,输入数据保证x不小于y.其中t=0表

BZOJ2209 [Jsoi2011]括号序列 splay

原文链接http://www.cnblogs.com/zhouzhendong/p/8093556.html 题目传送门 - BZOJ2209 题解 我太弱了,调出这题感觉都要吐了. 题解懒得写了. 给一个链接: http://blog.csdn.net/lych_cys/article/details/50700277 代码 #include <cstring> #include <cstdio> #include <algorithm> #include <c

[BZOJ 4350]括号序列再战猪猪侠 题解(区间DP)

[BZOJ 4350]括号序列再战猪猪侠 Description 括号序列与猪猪侠又大战了起来. 众所周知,括号序列是一个只有(和)组成的序列,我们称一个括号 序列S合法,当且仅当: 1.( )是一个合法的括号序列. 2.若A是合法的括号序列,则(A)是合法的括号序列. 3.若A,B是合法的括号序列,则AB是合法的括号序列. 我们考虑match[i]表示从左往右数第i个左括号所对应的是第几个右 括号,现在他得到了一个长度为2n的括号序列,给了你m个信息,第i 个信息形如ai,bi,表示match

Bzoj4350 括号序列再战猪猪侠

Time Limit: 20 Sec  Memory Limit: 512 MBSubmit: 97  Solved: 44 Description 括号序列与猪猪侠又大战了起来. 众所周知,括号序列是一个只有(和)组成的序列,我们称一个括号 序列S合法,当且仅当: 1.( )是一个合法的括号序列. 2.若A是合法的括号序列,则(A)是合法的括号序列. 3.若A,B是合法的括号序列,则AB是合法的括号序列. 我们考虑match[i]表示从左往右数第i个左括号所对应的是第几个右 括号,现在他得到了

LintCode Python 简单级题目 423.有效的括号序列

题目描述: 给定一个字符串所表示的括号序列,包含以下字符: '(', ')', '{', '}', '[' and ']', 判定是否是有效的括号序列. 您在真实的面试中是否遇到过这个题? Yes 样例 括号必须依照 "()" 顺序表示, "()[]{}" 是有效的括号,但 "([)]"则是无效的括号. 标签 栈 谷歌 题目分析: 循环字符串,遇左括号入栈. 遇右括号,从栈顶取元素然后配对,判断配对结果. 最后再判断栈是否不为空. 源码: cla

Codevs3657括号序列题解

题目描述 Description 我们用以下规则定义一个合法的括号序列: (1)空序列是合法的 (2)假如S是一个合法的序列,则(S)和[S]都是合法的 (3)假如A和B都是合法的,那么AB和BA也是合法的 例如以下是一些合法的括号序列: (),[],(()),([]),()[],()[()] 以下是一些不合法括号序列的: (,[,],)(,([]),([() 现在给定一些由"(",")","[","]"构成的序列 ,请添加尽

网易2017秋招笔试题3:最长公共子括号序列长度

[问题来源]网传的2017网易秋招笔试题 [问题描述] [算法思路] 下面的解题思路摘自  http://www.cnblogs.com/Atanisi/p/7500186.html 刚看到题我就想到暴力解,深搜出所有合法的括号序列,再依次比较公共子序列的长度,返回最长的.但是深搜一般和路径有关,这道题仅仅需要最大公共子序列的长度.而我们发现最大公共子序列的长度就是 s.size() - 1(当且仅当修改距离为 1 时 LCS 最大), 那么我们就想到,可以变换 s 中一个括号的位置,枚举所有的