이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
string str;
int dp[2001][2001];
bool go(int s, int e){
if(s>e){
return true;
}
if(dp[s][e]!=-1){
return dp[s][e]==1;
}
bool ret = false;
for(int i = s+1; i<=e && !ret; i++){
ret |= (str[s]==str[i]) && go(s+1,i-1)&&go(i+1,e);
}
if(ret){
dp[s][e] = 1;
}
else{
dp[s][e] = 0;
}
return ret;
}
string ans = "";
void build(int s, int e){
if(s>e){
return;
}
for(int i = e; i>=s+1; i--){
if(str[s]==str[i] && go(s+1,i-1) && go(i+1,e)){
ans += "(";
build(s+1,i-1);
ans += ")";
build(i+1,e);
return;
}
}
ans += "ERROR";
}
int main(){
cin >> str;
assert(str.length()<=2000);
for(int a = 0; a<2001; a++){
for(int b = 0; b<2001; b++){
dp[a][b] = -1;
}
}
if(go(0,str.length()-1)){
build(0,str.length()-1);
cout << ans<< endl;
}
else{
cout << -1 << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |