Codeforces508 E. Arthur and Brackets(括号匹配,贪心)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces508 E. Arthur and Brackets(括号匹配,贪心)相关的知识,希望对你有一定的参考价值。

题意:

解法:

栈维护左括号,
由于只有当栈顶的左括号被匹配后才能继续匹配之后的左括号.
同时每个左括号有一个要求的区间,发现越早匹配一定不会别影响之后的匹配.
因此能匹配则匹配就行了.

code:

#include<bits/stdc++.h>
// #define MULTI_CASE
#define SYNC_OFF
#define PI pair<int,int>
#define ll long long
// #define int long long
using namespace std;
// const int mod=998244353;
const int mod=1e9+7;
const int maxm=2e6+5;
struct Node{
    int pos,l,r;
};
int n;
void solve(){
    cin>>n;
    string ans;
    stack<Node>s;
    for(int i=1;i<=n;i++){
        int l,r;cin>>l>>r;
        s.push({(int)ans.size()+1,l,r});
        ans+='(';
        while(s.size()){
            Node x=s.top();
            int now=(ans.size()+1)-x.pos;
            if(now>=x.l&&now<=x.r){//能匹配则匹配
                ans+=')';s.pop();
            }else break;
        }
    }
    if(s.size())cout<<"IMPOSSIBLE"<<endl;
    else cout<<ans<<endl;
}
void Main(){
    #ifdef MULTI_CASE
    int T;cin>>T;while(T--)
    #endif
    solve();
}
void Init(){
    #ifdef SYNC_OFF
    ios::sync_with_stdio(0);cin.tie(0);
    #endif
    #ifndef ONLINE_JUDGE
    freopen("../in.txt","r",stdin);
    freopen("../out.txt","w",stdout);
    #endif
}
signed main(){
    Init();
    Main();
    return 0;
}

以上是关于Codeforces508 E. Arthur and Brackets(括号匹配,贪心)的主要内容,如果未能解决你的问题,请参考以下文章

codeforces 598E E. Chocolate Bar(区间dp)

Codeforces Round #508 (Div. 2)

Codeforces508 C. Anya and Ghosts(贪心)

CodeForces 518E Arthur and Questions(贪心 + 思维)题解

题解——Codeforces Round #508 (Div. 2) T1 (模拟)

Codeforces Round #316 (Div. 2)E. Pig and Palindromes DP