QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#662034 | #7683. Hard Brackets Problem | xDarkbluex | WA | 59ms | 3584kb | C++17 | 1.3kb | 2024-10-20 20:12:41 | 2024-10-20 20:13:12 |
Judging History
answer
#include <bits/stdc++.h>
void solve() {
std::string s;
std::cin >> s;
int len = s.size();
if (len == 1) {
if (s[0] == '(') std::cout << "impossible\n";
else std::cout << ")\n";
return;
}
std::string ans = "";
std::stack<char> stk, input;
for (int i = 0; i < len; i++) {
while (s[i] == ')') {
if (stk.size()) {
ans += ')';
stk.pop();
input.emplace(')');
}
else {
ans += ')';
}
i++;
}
if (i == len - 1 && s[i] == '(') {
std::cout << "impossible\n";
return;
}
if (i + 1 < len && s[i] == '(' && s[i + 1] == ')') {
i++;
ans += "()";
} else if (s[i] == '(' && s[len - 1] == ')') {
ans += '(';
stk.emplace(')');
len--;
}
}
while (input.size()) {
while (stk.size()) {
ans += ')';
stk.pop();
}
ans += ')';
input.pop();
}
std::cout << ans << '\n';
}
int main() {
int T;
std::cin >> T;
while (T--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3532kb
input:
3 ((())) ( )))()
output:
((() impossible )))()
result:
ok 3 cases (3 test cases)
Test #2:
score: -100
Wrong Answer
time: 59ms
memory: 3584kb
input:
100000 ())(()()() ()())())) )()()()() ())()(())( ((())())) )(())()))( )()))()))) )))))(((() ()))((()(( ()((()())) (()())()) ())(()))() (())(()))) ))))(()(() ()))(())(( ()((())()) ()))()))() ()((())()) ()()))((() ()))(())) (()(()))) ())((())) ())()((()) (()(()))) ()(((()()) ))))())))( ((((()()() (()(...
output:
impossible ()())())) )()()()() impossible ((())())) impossible )()))()))) impossible impossible ()((()() (()())()) impossible (())(()))))) impossible impossible impossible ()))()))() impossible impossible ()))(()))) (()(()))))) ())((() impossible (()(()))))) impossible impossible impossible impossib...
result:
wrong answer Jury has the answer but participant has not (test case 12)