# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
867555 | 42kangaroo | parentrises (BOI18_parentrises) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//
// Created by 42kangaroo on 28/10/2023.
//
#include "bits/stdc++.h"
using namespace std;
#define int long long
array<char,3> col{'G', 'R', 'B'};
signed main() {
int p, t; cin >> p >> t;
while (t--) {
if (p == 1) {
string s; cin >> s;
bool pos = true;
vector<int> co(s.size(),0);
deque<int> closeInd;
deque<int> openInd;
int act = 0;
for (int i = 0; i < s.size(); ++i) {
if (s[i] == '(') {
++act;
} else {
closeInd.push_back(i);
--act;
if (act < 0) {
if (closeInd.size() < 2) {
cout << "impossible\n";
pos = false;
break;
} else {
co[closeInd.front()] = 2;
closeInd.pop_front();
co[closeInd.front()] = 1;
closeInd.pop_front();
++act;
}
}
}
}
act = 0;
for(int i = s.size() - 1; i >= 0; --i) {
if (s[i] == '(') {
openInd.push_back(i);
--act;
if (act < 0) {
if (openInd.empty()) {
cout << "impossible\n";
pos = false;
break;
} else {
co[openInd.front()] = 2;
openInd.front();
++act;
}
}
} else if (co[i] < 2){
++act;
}
}
assert(!pos || act == 0);
openInd.clear();
for(int i = s.size() - 1; i >= 0; --i) {
if (s[i] == '(' && (co[i] == 0 || co[i] == 2)) {
if (co[i] == 0) {
openInd.push_back(i);
}
--act;
if (act < 0) {
if (openInd.empty()) {
cout << "impossible\n";
pos = false;
break;
} else {
co[openInd.back()] = 1;
openInd.pop_back();
++act;
}
}
} else if (s[i] == ')' && (co[i] == 0 || co[i] == 2)){
++act;
}
}
assert(!pos || act == 0);
if (pos) {
for (auto e: co) {
cout << col[e];
}
cout << "\n";
}
/*if (pos) {
for (int i = 0; i < s.size(); ++i) {
if (co[i] != 2) cout << s[i];
}
cout << "\n";
for (int i = 0; i < s.size(); ++i) {
if (co[i] != 1) cout << s[i];
}
cout << "\n";
}*/
}
}
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |