# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
968272 | Isam | Superpozicija (COCI22_superpozicija) | C++17 | 16 ms | 3128 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n, a[100002], b[100002];
string z;
inline bool is_valid(string s){
int tot(0);
for(register int i = 0; i < (int)s.size(); ++i){
tot += (s[i]=='('?1:-1);
if(tot < 0) return false;
}
return !tot;
}
int ans[100002];
signed main(){
ios_base::sync_with_stdio(0), cin.tie(0);
int T;
cin >> T;
function<void()> test_case = [](){
cin >> n >> z;
z = '.' + z;
string tmp = "";
for(register int i = 1; i <= n; ++i){
cin >> a[i] >> b[i];
if(z[a[i]] == '('){
z[b[i]] = '.';
ans[i] = 0;
}else{
z[a[i]] = '.';
ans[i] = 1;
}
}
if(n & 1) return cout << -1 << '\n', void();
for(register int i = 1; i <= n*2; ++i){
if(z[i] == '.') continue;
tmp += z[i];
}
if(is_valid(tmp)){
for(register int i = 1; i <= n; ++i) cout << ans[i] << ' ';
}else{
cout << -1;
}
cout << '\n';
};
while(T--) test_case();
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... |