「CF508E」Arthur and Brackets
题解
经过尝试构造后发现。。。
将括号的dis设小不会更劣
如(())变成()()更有利于加入其它的括号
于是从后往前依次考虑每个括号,使得它尽量包含少的括号
复杂度n^2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
#include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<set> #include<ctime> #include<vector> #include<queue> #include<algorithm> #include<map> #include<cmath> #define eps 1e-8 #define inf 1000000000 #define pa pair<int,int> #define ll long long using namespace std; int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int n; vector<int> st; int ans[605],q[1205]; int l[605],r[605]; bool mark[605]; void print() { int now=1; for(int i=1;i<=n;i++) { while(q[now])now++; q[now]=1;q[now+ans[i]]=-1; } for(int i=1;i<=2*n;i++) if(q[i]==1)printf("("); else printf(")"); } bool solve(int t) { st.clear(); int tot=0; if(l[t]==1){ans[t]=1;return 1;} if(ans[t])return 1; for(int j=t+1;j<=n&&tot+1<l[t];j++) if(ans[j]) { if(!mark[j]){tot+=ans[j]+1;st.push_back(j);} } else return 1; tot++; if(tot<l[t]||tot>r[t])return 0; for(int i=0;i<st.size();i++) mark[st[i]]=1; ans[t]=tot; return 1; } int main() { n=read(); for(int i=1;i<=n;i++) { l[i]=read(),r[i]=read(); if(l[i]%2==0)l[i]++; } for(int x=n;x;x--) if(!solve(x)){puts("IMPOSSIBLE");return 0;} print(); return 0; } |
Subscribe