結果

問題 No.2855 Move on Grid
ユーザー Today03Today03
提出日時 2024-08-29 14:02:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,195 bytes
コンパイル時間 3,239 ms
コンパイル使用メモリ 256,508 KB
実行使用メモリ 218,752 KB
最終ジャッジ日時 2024-08-29 14:02:20
合計ジャッジ時間 11,427 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 11 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 4 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 23 ms
11,648 KB
testcase_10 AC 489 ms
218,752 KB
testcase_11 AC 486 ms
218,752 KB
testcase_12 AC 508 ms
218,752 KB
testcase_13 AC 481 ms
218,752 KB
testcase_14 AC 506 ms
218,752 KB
testcase_15 AC 467 ms
218,752 KB
testcase_16 AC 480 ms
218,752 KB
testcase_17 AC 503 ms
218,752 KB
testcase_18 AC 477 ms
218,752 KB
testcase_19 AC 479 ms
218,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 45 ms
8,704 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N, M, K;
    cin >> N >> M >> K;
    vector<vector<int>> A(N, vector<int>(M));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            cin >> A[i][j];
        }
    }

    const int inf = 1e9;
    K = min(K, N + M);
    vector<vector<vector<int>>> dp(N, vector<vector<int>>(M, vector<int>(K + 1)));
    dp[0][0][0] = A[0][0];
    if (K >= 1) dp[0][0][1] = inf;

    for (int i = 0; i < N; i++) {
        for (int j = 0; j < M; j++) {
            for (int k = 0; k <= K; k++) {
                if (i + 1 < N) {
                    dp[i + 1][j][k] = max(dp[i + 1][j][k], min(dp[i][j][k], A[i + 1][j]));
                    if (k < K) dp[i + 1][j][k + 1] = max(dp[i + 1][j][k + 1], dp[i][j][k]);
                }
                if (j + 1 < M) {
                    dp[i][j + 1][k] = max(dp[i][j + 1][k], min(dp[i][j][k], A[i][j + 1]));
                    if (k < K) dp[i][j + 1][k + 1] = max(dp[i][j + 1][k + 1], dp[i][j][k]);
                }
            }
        }
    }

    cout << ranges::max(dp.back().back()) << endl;
}
0