結果

問題 No.2855 Move on Grid
ユーザー InTheBloomInTheBloom
提出日時 2024-08-25 14:03:53
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 1,441 bytes
コンパイル時間 1,558 ms
コンパイル使用メモリ 173,632 KB
実行使用メモリ 7,732 KB
最終ジャッジ日時 2024-08-25 14:04:03
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 26 ms
6,944 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 11 ms
6,944 KB
testcase_10 AC 84 ms
6,944 KB
testcase_11 AC 81 ms
6,940 KB
testcase_12 AC 83 ms
7,384 KB
testcase_13 AC 84 ms
7,424 KB
testcase_14 AC 85 ms
6,940 KB
testcase_15 AC 86 ms
7,324 KB
testcase_16 AC 80 ms
6,940 KB
testcase_17 AC 83 ms
6,940 KB
testcase_18 AC 82 ms
6,940 KB
testcase_19 AC 81 ms
7,056 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 108 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N, M, K; readln.read(N, M, K);
    auto A = new int[][](N, 0);
    foreach (i; 0..N) A[i] = readln.split.to!(int[]);

    // k未満を踏む回数の最小値は何回? -> dpで求まる。
    // 変えないといけない数は単調性アリ
    auto dp = new int[][](N, M);
    bool f (int x) {
        foreach (d; dp) d[] = int.max;
        dp[0][0] = 0;
        if (A[0][0] < x) dp[0][0] = 1;

        foreach (i; 0..N) {
            foreach (j; 0..M) {
                // 下
                if (i + 1 < N) {
                    int v = 0;
                    if (A[i + 1][j] < x) v = 1;
                    dp[i + 1][j] = min(dp[i + 1][j], dp[i][j] + v);
                }

                // 右
                if (j + 1 < M) {
                    int v = 0;
                    if (A[i][j + 1] < x) v = 1;
                    dp[i][j + 1] = min(dp[i][j + 1], dp[i][j] + v);
                }
            }
        }

        return dp[N - 1][M - 1] <= K;
    }

    int ok = 1, ng = 10 ^^ 9 + 1;
    while (1 < abs(ok - ng)) {
        int mid = (ok + ng) / 2;
        if (f(mid)) {
            ok = mid;
        }
        else {
            ng = mid;
        }
    }

    writeln(ok);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0