题面在这里!

(会考完之后休闲休闲2333)

可以发现,如果把一个串中"()"自动删除,最后剩的一定是形如"))))....))(((..((("这样的串,然后我们多加进去的括号的个数就是剩的这个串的长度。。

然鹅这个题首先要求的是最后总长度最小,并且我们可以观察发现把最后一个循环位移到最前面是会使一对")("相抵消的。

所以我们最后的最优答案一定是排除已经匹配的括号之后只剩一种括号的串,我们枚举一下循环位移了多少(循环位移之后一定是一个原串的后缀+前缀的形式),然后再判断一下这种循环位移是否会只剩一种串(可以把原串中 '('个数 - ')'个数 分类讨论一下,然后退出一个形如 一个区间里的前缀/后缀 都要 大于等于 某个前缀/后缀 的式子,可以 O(N) 单调队列扫一遍 ),然后用hash直接更新答案即可,显然最后多的括号都堆在前面或者后面是最优的,然后就做完了2333

(最近常数是真的小啊2333)

#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int maxn=2000005,ha=1e9+9; inline int Get(char x){ return x=='('?1:-1;} inline int add(int x,int y){ x+=y; return x>=ha?x-ha:x;} int n,q[maxn],hd,tl,a[maxn],tot,p,N;
int c[maxn],h[maxn];
char s[maxn]; inline int gethash(int x,int len){ return add(h[x+len-1],ha-h[x-1]*(ll)c[len]%ha);} inline bool cmp(int x,int y){
int l=0,r=n,mid,an=0;
while(l<=r){
mid=l+r>>1;
if(gethash(x,mid)==gethash(y,mid)) an=mid,l=mid+1;
else r=mid-1;
} return an==n?1:s[x+an]=='(';
} inline void update(int x){ if(!p||cmp(x,p)) p=x;} inline void solve1(){
c[0]=1;
for(int i=1;i<=N;i++){
a[i]=a[i-1]+Get(s[i]);
c[i]=add(c[i-1],add(c[i-1],c[i-1]));
h[i]=add(add(h[i-1],add(h[i-1],h[i-1])),(s[i]=='('?1:2));
} hd=1,tl=0;
for(int i=1;i<N;i++){
while(hd<=tl&&a[i]<=a[q[tl]]) tl--;
q[++tl]=i;
while(hd<=tl&&q[hd]+n<=i) hd++; if(i>=n&&a[q[hd]]>=a[i-n]) update(i-n+1);
} for(int i=0;i<n;i++) putchar(s[p+i]);
for(int i=1;i<=tot;i++) putchar(')');
} inline void solve2(){
c[0]=1;
for(int i=1;i<=N;i++){
c[i]=add(c[i-1],add(c[i-1],c[i-1]));
h[i]=add(add(h[i-1],add(h[i-1],h[i-1])),(s[i]=='('?1:2));
} for(int i=N;i;i--) a[i]=a[i+1]-Get(s[i]); hd=1,tl=0;
for(int i=N-1;i;i--){
while(hd<=tl&&a[i]<=a[q[tl]]) tl--;
q[++tl]=i;
while(hd<=tl&&q[hd]-n>=i) hd++; if(i<=n&&a[q[hd]]>=a[i+n]) update(i);
} for(int i=tot;i<0;i++) putchar('(');
for(int i=0;i<n;i++) putchar(s[p+i]);
} int main(){
// freopen("data.in","r",stdin);
// freopen("data.out","w",stdout); scanf("%s",s+1),n=strlen(s+1),N=n<<1;
for(int i=1;i<=n;i++) s[i+n]=s[i],tot+=Get(s[i]); if(tot>=0) solve1();
else solve2(); return 0;
}

  

CodeForces - 524F And Yet Another Bracket Sequence的更多相关文章

  1. (CodeForces - 5C)Longest Regular Bracket Sequence(dp+栈)(最长连续括号模板)

    (CodeForces - 5C)Longest Regular Bracket Sequence time limit per test:2 seconds memory limit per tes ...

  2. 【Codeforces 3D】Least Cost Bracket Sequence

    Codeforces 3 D 题意:有一个括号序列,其中一些位置是问号,把第\(i\)个问号改成(需要\(a_i\)的代价,把它改成)需要\(b_i\)的代价. 问使得这个括号序列成立所需要的最小代价 ...

  3. CodeForces 3 D.Least Cost Bracket Sequence【贪心+优先队列】

    Description 给出一个括号序列,中间有一些问号,将第i个问号换成左括号代价是a[i],换成右括号代价是b[i],问如果用最少的代价将这个括号序列变成一个合法的括号序列 Input 第一行一个 ...

  4. CodeForces 670E Correct Bracket Sequence Editor(list和迭代器函数模拟)

    E. Correct Bracket Sequence Editor time limit per test 2 seconds memory limit per test 256 megabytes ...

  5. Educational Codeforces Round 4 C. Replace To Make Regular Bracket Sequence 栈

    C. Replace To Make Regular Bracket Sequence 题目连接: http://www.codeforces.com/contest/612/problem/C De ...

  6. Codeforces Beta Round #5 C. Longest Regular Bracket Sequence 栈/dp

    C. Longest Regular Bracket Sequence Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.c ...

  7. Codeforces Round #350 (Div. 2) E. Correct Bracket Sequence Editor 栈 链表

    E. Correct Bracket Sequence Editor 题目连接: http://www.codeforces.com/contest/670/problem/E Description ...

  8. Codeforces Beta Round #3 D. Least Cost Bracket Sequence 优先队列

    D. Least Cost Bracket Sequence 题目连接: http://www.codeforces.com/contest/3/problem/D Description This ...

  9. 贪心+stack Codeforces Beta Round #5 C. Longest Regular Bracket Sequence

    题目传送门 /* 题意:求最长括号匹配的长度和它的个数 贪心+stack:用栈存放最近的左括号的位置,若是有右括号匹配,则记录它们的长度,更新最大值,可以在O (n)解决 详细解释:http://bl ...

随机推荐

  1. POj 2104 K-th Number (分桶法+线段树)

    题目链接 Description You are working for Macrohard company in data structures department. After failing ...

  2. php中使用static方法

    <?php class Char{ public static $number = 0; public static $name; function __construct($what){ se ...

  3. Vue-$emit的用法

    1.父组件可以使用 props 把数据传给子组件.2.子组件可以使用 $emit 触发父组件的自定义事件. vm.$emit( event, arg ) //触发当前实例上的事件 vm.$on( ev ...

  4. [caffe error] undefined reference to `inflateValidate@ZLIB_1.2.9'

    undefined reference to `inflateValidate@ZLIB_1.2.9' Makefile.config添加一行LINKFLAGS := -Wl,-rpath,$(HOM ...

  5. [New learn]AutoLayout调查基于code

    代码https://github.com/xufeng79x/TestAutolayout-code2 0.插在前面 必须关闭view的自动缩放掩码,自动缩放掩码是autolayout出现之前系统管理 ...

  6. C++11空指针: nullptr

    参考[C++11]新特性--引入nullptr NULL 在C++中, 经常会用到空指针, 一般用NULL表示空指针, 但是NULL却是这样定义的 #ifndef NULL #ifdef __cplu ...

  7. Commons CLI 学习(1)

    The Apache Commons CLI library provides an API for parsing command line options passed to programs. ...

  8. Maximum Gap——桶排序

    Given an unsorted array, find the maximum difference between the successive elements in its sorted f ...

  9. 比对两个Word文件内容是否一致的C#解决办法

    using System; using System.Windows.Forms; using System.Diagnostics; using Microsoft.Office.Interop.W ...

  10. 微软企业库5.0 学习之路——第八步、使用Configuration Setting模块等多种方式分类管理企业库配置信息

    在介绍完企业库几个常用模块后,我今天要对企业库的配置文件进行处理,缘由是我打开web.config想进行一些配置的时候发现web.config已经变的异常的臃肿(大量的企业库配置信息充斥其中),所以决 ...