#include<bits/stdc++.h>
#define F first
#define S second
using namespace std;
typedef long long ll;
const ll mod=1e9+7;
const short int inf=(1<<30);
const short int MX=309;
char a[MX][MX];
short int n,m,dp[MX][MX][MX];
short int DP(short int x,short int y,short int open){
if(y<=0||y>m||open<0)return -inf;
if(x==0){
if(open)return -inf;
return 0;
}
if(a[x][y]=='*'){
if(open)return -inf;
return 0;
}
short int &ret=dp[x][y][open];if(ret!=-1)return ret;
pair<char,short int>v[3];
v[0]={a[x-1][y-1],y-1};
v[1]={a[x-1][y],y};
v[2]={a[x-1][y+1],y+1};
sort(v,v+3);
for(short int i=0;i<3;i++){
pair<char,short int>pp=v[i];
short int open1=open,add=0;
if(pp.first=='(')open1++;
if(pp.first==')')open1--,add=2;
short int x1=DP(x-1,pp.second,open1)+add;
if((pp.first=='('||pp.first==')'))ret=max(ret,x1);
ret=max(ret,DP(x-1,pp.second,open));
}
return ret;
}
void FDP(short int x,short int y,short int open){
if(y<=0||y>m||open<0)return;
if(x<=0)return;
if(a[x][y]=='*')return;
short int &ret=dp[x][y][open];
pair<char,short int>v[3];
v[0]={a[x-1][y-1],y-1};
v[1]={a[x-1][y],y};
v[2]={a[x-1][y+1],y+1};
sort(v,v+3);
for(short int i=0;i<3;i++){
pair<char,short int>pp=v[i];
short int open1=open,add=0;
if(pp.first=='(')open1++;
if(pp.first==')')open1--,add=2;
if(pp.first=='('||pp.first==')')if(ret==DP(x-1,pp.second,open1)+add){
printf("%c",pp.first);
FDP(x-1,pp.second,open1);
return;
}
if(ret==DP(x-1,pp.second,open)){
FDP(x-1,pp.second,open);
return;
}
}
}
int main(){
cin>>n>>m;
for(short int i=1;i<=n;i++){
for(short int j=1;j<=m;j++){
cin>>a[i][j];
}
}
memset(dp,-1,sizeof(dp));
short int j;
for(short int i=1;i<=m;i++){
if(a[n][i]=='M')j=i;
}
cout<<DP(n,j,0)<<endl;
FDP(n,j,0);
puts("");
}
Compilation message
retro.cpp:7:27: warning: overflow in implicit constant conversion [-Woverflow]
const short int inf=(1<<30);
^
retro.cpp: In function 'int main()':
retro.cpp:72:15: warning: 'j' may be used uninitialized in this function [-Wmaybe-uninitialized]
short int j;
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
59736 KB |
Output isn't correct |
2 |
Correct |
6 ms |
59736 KB |
Output is correct |
3 |
Partially correct |
9 ms |
59736 KB |
Partially correct |
4 |
Incorrect |
0 ms |
59736 KB |
Output isn't correct |
5 |
Partially correct |
0 ms |
59736 KB |
Partially correct |
6 |
Partially correct |
16 ms |
59736 KB |
Partially correct |
7 |
Partially correct |
9 ms |
59736 KB |
Partially correct |
8 |
Incorrect |
6 ms |
59736 KB |
Output isn't correct |
9 |
Partially correct |
13 ms |
59736 KB |
Partially correct |
10 |
Partially correct |
9 ms |
59736 KB |
Partially correct |
11 |
Partially correct |
396 ms |
59736 KB |
Partially correct |
12 |
Partially correct |
289 ms |
59736 KB |
Partially correct |
13 |
Partially correct |
173 ms |
59736 KB |
Partially correct |
14 |
Partially correct |
156 ms |
59736 KB |
Partially correct |
15 |
Partially correct |
419 ms |
59736 KB |
Partially correct |
16 |
Incorrect |
363 ms |
59736 KB |
Output isn't correct |
17 |
Partially correct |
326 ms |
59736 KB |
Partially correct |
18 |
Partially correct |
273 ms |
59736 KB |
Partially correct |
19 |
Partially correct |
439 ms |
59736 KB |
Partially correct |
20 |
Incorrect |
426 ms |
59736 KB |
Output isn't correct |