# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
867539 | 42kangaroo | parentrises (BOI18_parentrises) | C++17 | 0 ms | 436 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//
// 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);
vector<int> closeInd;
vector<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.back()] = 1;
closeInd.pop_back();
co[closeInd.back()] = 2;
closeInd.pop_back();
++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.back()] = 2;
openInd.pop_back();
++act;
}
}
} else if (co[i] < 2){
++act;
}
}
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;
}
}
if (pos) {
for (auto e: co) {
cout << col[e];
}
cout << "\n";
}
}
}
}
Compilation message (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... |