# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
810484 | bonk | Superpozicija (COCI22_superpozicija) | C++14 | 19 ms | 2988 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
bool valid(string s){
int sum = 0;
for(int i = 0; i < s.length(); i++){
if(s[i] == '(') sum++;
else{
sum--;
if(sum < 0) return false;
}
}
return (sum == 0);
}
void solve(){ //subtask 2
int n; cin >> n;
string s; cin >> s;
vector<pair<int, int>>v(n);
string cur = "";
vector<int>tmp;
for(int i = 0; i < n; i++){
cin >> v[i].first >> v[i].second;
v[i].first--; v[i].second--;
if(s[v[i].first] == '(') tmp.push_back(v[i].first);
else tmp.push_back(v[i].second);
}
sort(tmp.begin(), tmp.end());
for(auto &x: tmp) cur += s[x];
if(valid(cur)){
for(int i = 0; i < n; i++){
if(s[v[i].first] == '(') cout << 0 << ' ';
else cout << 1 << ' ';
}
cout << '\n';
} else{
cout << -1 << '\n';
}
return;
}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int tc; cin >> tc;
while(tc--){
solve();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |