码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #603 (Div. 2)E

时间:2019-12-14 12:02:21      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:i++   std   前缀   event   include   没有   一个   amp   span   

http://codeforces.com/contest/1263/problem/E

题意:求合法的括号序列

技术图片
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define lson root<<1,l,midd
#define rson root<<1|1,midd+1,r
#define pb push_back
const int inf=0x3f3f3f3f;
const ll INF=1e18;
const int M=1e6+6;
int tree[M<<2];
int lzmi[M<<2];///最小前缀和
int lzma[M<<2];///最大前缀和
char s[M];
void up(int root){
    tree[root]=tree[root<<1]+tree[root<<1|1];
    lzma[root]=max(lzma[root<<1],tree[root<<1]+lzma[root<<1|1]);///右区间来选前缀时要考虑到左区间带进来的贡献
    lzmi[root]=min(lzmi[root<<1],tree[root<<1]+lzmi[root<<1|1]);
}
void update(int p,int v,int root,int l,int r){
    if(l==r){
        tree[root]=lzmi[root]=lzma[root]=v;
        return ;
    }
    int midd=(l+r)>>1;
    if(p<=midd)
        update(p,v,lson);
    else
        update(p,v,rson);
    up(root);
}
int main(){
    int n;
    scanf("%d%s",&n,s);
    int nowpos=1;
    for(int i=0;i<n;i++){
        if(s[i]==L)
            nowpos=max(1,nowpos-1);
        else if(s[i]==R)
            nowpos++;
        else if(s[i]==()
            update(nowpos,1,1,1,n);
        else if(s[i]==))
            update(nowpos, -1,1,1,n);
        else
            update(nowpos,0,1,1,n);
        ///若全区间和不为0,则证明左括号数和右括号数不等
        ///若全区间最小前缀和不为0,则证明至少有一个右括号没有被左括号对应,
        if(lzmi[1]<0||tree[1]!=0)
            printf("-1 ");
        else
            printf("%d ",lzma[1]);
    }
    return 0;
}
View Code

Codeforces Round #603 (Div. 2)E

标签:i++   std   前缀   event   include   没有   一个   amp   span   

原文地址:https://www.cnblogs.com/starve/p/12038280.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!