이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
// subtask 2
int n, cnt[2005];
char res[2005];
string s;
void solve(int l, int r) {
if (l > r) return;
stack<char> st;
for (int i = l + 1; i <= r; ++i) {
cnt[i] = 0;
if (!st.size()) {
st.push(s[i]), cnt[i] += s[i] == s[l];
}
else {
if (st.top() == s[i]) st.pop();
else st.push(s[i]);
}
}
while (st.size()) st.pop();
for (int i = r; i >= l + 1; --i) {
if (!st.size()) {
st.push(s[i]), cnt[i] += s[i] == s[l];
}
else {
if (st.top() == s[i]) st.pop();
else st.push(s[i]);
}
}
int pos = 0;
for (int i = l + 1; i <= r; ++i) {
if (cnt[i] == 2) pos = i;
}
if (!pos) {
cout << -1; exit(0);
}
res[l] = '(', res[pos] = ')';
solve(l + 1, pos - 1), solve(pos + 1, r);
}
int main() {
ios::sync_with_stdio(false);
cin >> s, n = s.size();
if (n > 2000) return 0;
solve(0, n - 1);
for (int i = 0; i < n; ++i) cout << res[i];
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |