結果

問題 No.595 登山
ユーザー nebukuro09nebukuro09
提出日時 2017-11-12 00:37:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 44 ms / 1,500 ms
コード長 729 bytes
コンパイル時間 680 ms
コンパイル使用メモリ 117,700 KB
実行使用メモリ 15,324 KB
最終ジャッジ日時 2024-06-12 22:29:46
合計ジャッジ時間 2,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 37 ms
15,324 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 AC 31 ms
11,056 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 6 ms
6,944 KB
testcase_09 AC 30 ms
10,512 KB
testcase_10 AC 22 ms
8,852 KB
testcase_11 AC 19 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 10 ms
6,944 KB
testcase_14 AC 24 ms
11,232 KB
testcase_15 AC 24 ms
11,308 KB
testcase_16 AC 24 ms
10,872 KB
testcase_17 AC 25 ms
11,288 KB
testcase_18 AC 23 ms
11,692 KB
testcase_19 AC 41 ms
12,580 KB
testcase_20 AC 43 ms
12,612 KB
testcase_21 AC 43 ms
12,760 KB
testcase_22 AC 44 ms
12,596 KB
testcase_23 AC 43 ms
12,636 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 44 ms
15,084 KB
testcase_27 AC 36 ms
13,832 KB
testcase_28 AC 35 ms
13,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

immutable long INF = 1L << 60;

void main() {
    auto s = readln.split;
    auto N = s[0].to!int;
    auto P = s[1].to!long;
    auto H = readln.split.map!(to!long).array;

    auto dp = new long[][](2, N);
    dp[0][0] = 0;
    dp[1][0] = INF;

    foreach (i; 1..N) {
        dp[0][i] = min(dp[0][i-1] + max(0, H[i]-H[i-1]),
                       min(dp[0][i-1], dp[1][i-1]) + P);
        dp[1][i] = min(dp[1][i-1] + max(0, H[i-1]-H[i]),
                       min(dp[0][i-1], dp[1][i-1]) + P);
    }

    min(dp[0][N-1], dp[1][N-1]).writeln;
}
0