| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 681413 | vjudge1 | Match (CEOI16_match) | C++14 | 0 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... | ||||
