이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<string>
#include<utility>
#include<algorithm>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int t;
cin>>t;
while(t--){
int n;
cin>>n;
string s;
cin>>s;
vector<pair<int,int> > vec(n);
for(int i=0;i<n;i++) cin>>vec[i].first>>vec[i].second;
if(n&1){
cout<<"-1\n";
continue;
}
if(n<=10){
bool ff=0;
for(int i=0;i<(1<<n);i++){
string tmp;
for(int j=0;j<n;j++){
if(i&(1<<j)) tmp+=s[vec[j].second-1];
else tmp+=s[vec[j].first-1];
}
int now=0;
bool flag=1;
for(int j=0;j<n;j++){
if(tmp[j]=='(') now++;
else now--;
if(now<0){
flag=0;
break;
}
}
if(flag&&now==0){
for(int j=0;j<n;j++){
cout<<(i&1)<<" ";
i>>=1;
}
ff=1;
cout<<"\n";
break;
}
}
if(!ff) cout<<-1<<"\n";
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |