답안 #643486

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
643486 2022-09-22T07:01:54 Z BackNoob Retro (COCI17_retro) C++14
0 / 100
150 ms 113848 KB
#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define endl '\n'
#define MASK(i) (1LL << (i))
#define ull unsigned long long
#define ld long double
#define pb push_back
#define all(x) (x).begin() , (x).end()
#define BIT(x , i) ((x >> (i)) & 1)
#define TASK "task"
#define sz(s) (int) (s).size()

using namespace std;
const int mxN = 1e6 + 227;
const int inf = 1e9 + 277;
const int mod = 1e9 + 7;
const ll infll = 1e18 + 7;
const int base = 307;
const int LOG = 20;

template <typename T1, typename T2> bool minimize(T1 &a, T2 b) {
    if (a > b) {a = b; return true;} return false;
}
template <typename T1, typename T2> bool maximize(T1 &a, T2 b) {
    if (a < b) {a = b; return true;} return false;
}

int n;
int m;
char a[307][307];
int dp[307][307][307];

void solve()
{
    cin >> n >> m;
    for(int i = 1; i <= n; i++)
    for(int j = 1; j <= m; j++) cin >> a[i][j];

    pair<int, int> pos;
    for(int i = 1; i <= n; i++)
    for(int j = 1; j <= m; j++) if(a[i][j] == 'M') pos = make_pair(i, j);

    memset(dp, -0x3f, sizeof(dp));

    int res = 0;
    dp[pos.fi][pos.se][0] = 0;
    for(int i = n; i > 1; i--) {
        for(int j = 1; j <= m; j++) {
            for(int k = 0; k <= n; k++) {
                if(dp[i][j][k] == dp[0][0][0]) continue;
                for(int d = -1; d <= 1; d++) {
                    if(j + d >= 1 && j + d <= m) {
                        if(a[i - 1][j + d] == '*') {
                            if(k == 0) maximize(res, dp[i][j][k]);
                            continue;
                        }
                        if(a[i - 1][j + d] == '(') {
                            maximize(dp[i - 1][j + d][k + 1], dp[i][j][k] + 1);
                        }
                        if(a[i - 1][j + d] == ')') {
                            if(k > 0)
                                maximize(dp[i - 1][j + d][k - 1], dp[i][j][k] + 1);
                        }
                        if(a[i - 1][j + d] == '.') {
                            maximize(dp[i - 1][j + d][k], dp[i][j][k]);
                        }
                    }
                }
            }
        }
    }

    for(int j = 1; j <= m; j++) maximize(res, dp[1][j][0]);
    cout << res;
}


int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    //freopen("graph.inp", "r", stdin);
    //freopen("graph.out", "w", stdout);

    int tc = 1;
    //cin >> tc;
    while(tc--) {
        solve();
    }
    return 0;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 44 ms 113484 KB Unexpected end of file - token expected
2 Incorrect 45 ms 113556 KB Unexpected end of file - token expected
3 Incorrect 42 ms 113476 KB Unexpected end of file - token expected
4 Incorrect 46 ms 113472 KB Unexpected end of file - token expected
5 Incorrect 64 ms 113464 KB Unexpected end of file - token expected
6 Incorrect 50 ms 113484 KB Unexpected end of file - token expected
7 Incorrect 55 ms 113580 KB Unexpected end of file - token expected
8 Incorrect 45 ms 113528 KB Unexpected end of file - token expected
9 Incorrect 48 ms 113476 KB Unexpected end of file - token expected
10 Incorrect 77 ms 113484 KB Unexpected end of file - token expected
11 Incorrect 100 ms 113652 KB Unexpected end of file - token expected
12 Incorrect 101 ms 113720 KB Unexpected end of file - token expected
13 Incorrect 71 ms 113692 KB Unexpected end of file - token expected
14 Incorrect 73 ms 113688 KB Unexpected end of file - token expected
15 Incorrect 113 ms 113716 KB Unexpected end of file - token expected
16 Incorrect 115 ms 113732 KB Unexpected end of file - token expected
17 Incorrect 105 ms 113728 KB Unexpected end of file - token expected
18 Incorrect 110 ms 113720 KB Unexpected end of file - token expected
19 Incorrect 150 ms 113848 KB Unexpected end of file - token expected
20 Incorrect 105 ms 113652 KB Unexpected end of file - token expected