結果

問題 No.2095 High Rise
ユーザー kokatsukokatsu
提出日時 2022-10-23 18:06:41
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 210,052 KB
実行使用メモリ 24,572 KB
最終ジャッジ日時 2024-06-22 16:29:23
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 25 ms
9,448 KB
testcase_18 AC 17 ms
6,940 KB
testcase_19 AC 5 ms
6,940 KB
testcase_20 AC 26 ms
10,400 KB
testcase_21 AC 47 ms
11,760 KB
testcase_22 AC 190 ms
23,500 KB
testcase_23 AC 190 ms
22,804 KB
testcase_24 AC 188 ms
23,244 KB
testcase_25 AC 189 ms
24,572 KB
testcase_26 AC 189 ms
23,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N, M;
    readf("%d %d\n", N, M);

    auto A = new long[][](N);
    foreach (i; 0 .. N) A[i] = readln.chomp.split.to!(long[]);

    if (N == 1) {
        writeln(0);
        return;
    }

    long res = A[0].minElement;

    auto dp = new long[][](N, M);
    dp[0][] = A[0][];
    foreach (i; 1 .. N) {
        foreach (j; 0 .. M) {
            dp[i][j] = A[i][j] + min(dp[i-1][j], res+A[i-1][j]);
        }

        res = dp[i].minElement;
    }

    res.writeln;
}
0