# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
681413 | 2023-01-13T03:48:08 Z | vjudge1 | 괄호 문자열 (CEOI16_match) | C++14 | 0 ms | 212 KB |
#include <bits/stdc++.h> using namespace std; #define F first #define S second #define pb push_back #define all(a) a.begin(), a.end() typedef long long ll; typedef pair<int, int> ii; const int N = 2000 + 5; const int mod = 1e9 + 7; vector<int> pos['z' + 1]; string s; string t; int n; void rec(int l, int r) { if(l > r) return; int mid = *prev(upper_bound(all(pos[s[l]]), r)); // assert(mid >= 0); t[l] = '(', t[mid] = ')'; rec(l + 1, mid - 1); rec(mid + 1, r); } void solve() { cin >> s; int n = s.size(); t.resize(n); stack<char> st; for(int i = 0; i < n; i++) { if(st.size()) { if(st.top() == s[i]) st.pop(); else st.push(s[i]); } else st.push(s[i]); } if(st.size()) cout << -1, exit(0); for(int i = 0; i < n; i++) pos[s[i]].pb(i); rec(0, n - 1); cout << t; } signed main() { cin.tie(0)->sync_with_stdio(0); int t = 1; // cin >> t; while(t--) solve(); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 0 ms | 212 KB | Output is correct |
4 | Incorrect | 0 ms | 212 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |