codeforces 494a//Treasure// Codeforces Round #282(Div. 1)
Posted gaudar
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 494a//Treasure// Codeforces Round #282(Div. 1)相关的知识,希望对你有一定的参考价值。
题意:一个‘(‘ , ‘)‘ , ‘#‘组成的串,可将‘#‘换成至少一个‘)‘。问一个换法能使串匹配。
至少换成一个,那么就先都换成一个,记结果为str。最后一个‘)‘的后面没有未匹配的‘(‘时可行。否则输出-1。因为后面不可能再添加‘)‘了。如果str会因为‘)‘匹配不到‘(‘则无解。否则有解,将str中‘(‘的数量-‘)‘的数量加到最后一个串中。
乱码:
//#pragma comment(linker,"/STACK:1024000000,1024000000") #include<iostream> #include<cstdio> #include<string> #include<cstring> #include<vector> #include<cmath> #include<queue> #include<stack> #include<map> #include<set> #include<algorithm> #include <stack> #include <list> using namespace std; const int SZ=1000010,INF=0x7FFFFFFF; typedef long long lon; const double EPS=1e-9; int work(string &str) { int res=0; stack<char> stk; for(int i=0;i<str.size();++i) { if(str[i]==‘(‘) { stk.push(str[i]); } else { if(stk.empty()) { return INF; } else { stk.pop(); } } } return stk.size(); } bool work2(string &str) { stack<char> stk; for(int i=0;i<str.size();++i) { if(str[i]==‘(‘) { stk.push(‘(‘); } else { if(!stk.empty()) { stk.pop(); } } } return stk.empty(); } int main() { std::ios::sync_with_stdio(0); //freopen("d:\1.txt","r",stdin); string str; cin>>str; int resnum=count(str.begin(),str.end(),‘#‘); int last=str.find_last_of(‘#‘); string sub=str.substr(last+1,str.size()); //cout<<sub<<endl; for(int i=0;i<str.size();++i) { if(str[i]==‘#‘)str[i]=‘)‘; } int res=work(str); // int cnt1=count(str.begin()+last+1,str.end(),‘(‘); // int cnt2=count(str.begin()+last+1,str.end(),‘)‘); // if(cnt1>cnt2)res=INF; //cout<<resnum<<endl; if(!work2(sub))res=INF; if(res!=INF) for(int i=0;i<resnum;++i) { if(i!=resnum-1)cout<<1<<endl; else cout<<1+res<<endl; } else cout<<-1<<endl; return 0; }
以上是关于codeforces 494a//Treasure// Codeforces Round #282(Div. 1)的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #494 (Div. 3)未完结
Codeforces 494B Upgrading Array
[Codeforces-div.1 494C] Helping People