# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
81380 | luckyboy | Retro (COCI17_retro) | C++14 | 325 ms | 218012 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**Lucky Boy**/
#include <bits/stdc++.h>
#define FOR(i, a, b) for (int i = (a); i <= (b); ++i)
#define FORD(i, a, b) for (int i = (a); i >= (b); --i)
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define maxc 1000000007
#define maxn 305
#define maxm 500005
#define pii pair <int,int>
#define Task ""
template <typename T> inline void read(T &x){char c;bool nega=0;while((!isdigit(c=getchar()))&&(c!='-'));if(c=='-'){nega=1;c=getchar();}x=c-48;while(isdigit(c=getchar())) x=x*10+c-48;if(nega) x=-x;}
template <typename T> inline void writep(T x){if(x>9) writep(x/10);putchar(x%10+48);}
template <typename T> inline void write(T x){if(x<0){putchar('-');x=-x;}writep(x);putchar(' ');}
template <typename T> inline void writeln(T x){write(x);putchar('\n');}
using namespace std;
int n,m,tr[maxn][maxn][maxn],dp[maxn][maxn][maxn];
char c[maxn][maxn];
vector <char> res;
pair <bitset <maxn>,int> ewefij[maxn][maxn][maxn];
int main()
{
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
//freopen(Task".inp", "r",stdin);
//freopen(Task".out", "w",stdout);
cin >> n >> m;
FOR(i,1,n)
FOR(j,1,m)
FOR(k,0,n) dp[i][j][k] = -maxc;
FOR(i,1,n)
FOR(j,1,m)
{
cin >> c[i][j];
if (c[i][j] == 'M') dp[i][j][0] = 0;
}
FORD(i,n-1,1)
FOR(j,1,m)
{
if (c[i][j] == '*') continue;
if (c[i][j] == '.')
{
FOR(k,0,n)
{
FOR(dis,-1,1)
{
int x = j + dis;
if (x < 1 || x > m) continue;
if (dp[i][j][k] < dp[i+1][x][k])
{
dp[i][j][k] = dp[i+1][x][k];
tr[i][j][k] = x;
}
}
}
continue;
}
if (c[i][j] == '(')
{
FOR(k,1,n)
{
FOR(dis,-1,1)
{
int x = j + dis;
if (x < 1 || x > m) continue;
if (dp[i][j][k] < dp[i+1][x][k-1] + 1)
{
dp[i][j][k] = dp[i+1][x][k-1] + 1;
tr[i][j][k] = x;
}
}
}
continue;
}
FOR(k,0,n - 1)
{
FOR(dis,-1,1)
{
int x = j + dis;
if (x < 1 || x > m) continue;
if (dp[i][j][k] < dp[i+1][x][k+1] + 1)
{
dp[i][j][k] = dp[i+1][x][k+1] + 1;
tr[i][j][k] = x;
}
}
}
}
int ans = -maxc,u,v;
FOR(j,1,m)
if (ans < dp[1][j][0] && (c[1][j] == ')' || c[1][j] == '.'))
{
ans = dp[1][j][0];
u = 1,v = j;
}
FOR(i,1,n - 1)
FOR(j,1,m)
if (c[i][j] == '*')
{
FOR(dis,-1,1)
{
int x = j + dis;
if (x < 1 || x > m) continue;
if (ans < dp[i+1][x][0])
{
ans = dp[i+1][x][0];
u = i + 1;
v = x;
}
}
}
cout << ans << '\n';
int ww = 0;
while (u <= n)
{
char temp = c[u][v];
v = tr[u][v][ww];
res.pb(temp);
++u;
if (temp == '(') --ww;
else if (temp == ')') ++ww;
}
reverse(res.begin(),res.end());
for (char c : res) if (c == '(' || c == ')')
cout << c;
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |