# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
405694 | souvenir_vayne | Selotejp (COCI20_selotejp) | C++14 | 288 ms | 62084 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.
#include<bits/stdc++.h>
using namespace std;
int l, c, dp[1005][15][1029], aux;
char m[1005][15];
int solve(int i, int j, int mask) {
int &ans = dp[i][j][mask];
if(ans != -1)
return ans;
if(j == c)
return solve(i+1, 0, mask);
if(i == l)
return 0;
int kek = 1<<j;
if(m[i][j] == '.')
return ans = solve(i, j+1, mask & (aux - kek));
ans = min( solve(i, j+1, mask | kek) , solve(i, j+1, mask & (aux - kek)) ) + 1;
if(i) {
int now = ( mask & (1<<j) );
if(now && m[i-1][j] == '#')
ans = min(ans, solve(i, j+1, mask | kek));
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |