「CF494A」Treasure
题解
除了最后一个#,其余的都取1,最后补全,然后判断合法性即可
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 |
#include<iostream> #include<cstdio> #include<cstdlib> #include<algorithm> #include<cmath> #include<cstring> #define inf 2000000000 #define ll long long #define N 100005 using namespace std; inline 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; } char ch[100005]; int l,r,x,last; int main() { scanf("%s",ch+1); int L=strlen(ch+1); for(int i=1;i<=L;i++) if(ch[i]=='(')l++; else if(ch[i]==')')r++; else x++,last=i; if(r+x>l){puts("-1");return 0;} int now=0; for(int i=1;i<=L;i++) { if(ch[i]=='(')now++; else now--; if(i==last)now-=(l-r-x); if(now<0){puts("-1");return 0;} } for(int i=1;i<x;i++)puts("1"); printf("%d\n",l-r-x+1); return 0; } |
好像FST了………………
T T我一个L打成了l。。。