# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
134179 |
2019-07-22T07:58:46 Z |
임유진(#3231) |
괄호 문자열 (CEOI16_match) |
C++14 |
|
2 ms |
504 KB |
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 20;
char s[MAXN];
bool dp[MAXN][MAXN];
char ans[MAXN];
void solve(int l, int r) {
if(l > r) return;
for(int i = r; ; i--) if(s[l] == s[i] && dp[l + 1][i - 1] && dp[i + 1][r]) {
ans[l] = '(';
ans[i] = ')';
solve(l + 1, i - 1);
solve(i + 1, r);
}
}
int main() {
int N;
cin >> s;
for(N = 0; s[N]; N++);
for(int i = 1; i <= N; i++) dp[i][i - 1] = true;
for(int i = 2; i <= N; i++) for(int j = 0; i + j - 1 < N; j++) {
for(int k = j + 1; k <= i + j - 1; k++) if(s[j] == s[k] && dp[j + 1][k - 1] && dp[k + 1][i +j - 1])
dp[j][i + j - 1] = true;
}
if(!dp[0][N - 1]) cout << -1;
else {
solve(0, N - 1);
for(int i = 0; i < N; i++) cout << ans[i];
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
504 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
504 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
504 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |