結果

問題 No.595 登山
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-08 02:49:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 614 ms / 1,500 ms
コード長 514 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,672 KB
最終ジャッジ日時 2024-09-08 02:49:56
合計ジャッジ時間 13,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 587 ms
29,852 KB
testcase_05 AC 176 ms
16,068 KB
testcase_06 AC 494 ms
26,080 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 AC 103 ms
13,292 KB
testcase_09 AC 476 ms
26,152 KB
testcase_10 AC 337 ms
22,216 KB
testcase_11 AC 304 ms
20,840 KB
testcase_12 AC 68 ms
12,032 KB
testcase_13 AC 162 ms
15,464 KB
testcase_14 AC 533 ms
23,028 KB
testcase_15 AC 530 ms
23,152 KB
testcase_16 AC 558 ms
23,040 KB
testcase_17 AC 539 ms
23,036 KB
testcase_18 AC 544 ms
23,028 KB
testcase_19 AC 596 ms
32,672 KB
testcase_20 AC 576 ms
32,548 KB
testcase_21 AC 614 ms
32,544 KB
testcase_22 AC 595 ms
32,544 KB
testcase_23 AC 569 ms
32,548 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 55 ms
10,752 KB
testcase_26 AC 589 ms
32,500 KB
testcase_27 AC 556 ms
24,352 KB
testcase_28 AC 546 ms
24,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(int(1e6))
input = lambda: sys.stdin.readline().rstrip("\r\n")
MOD = 998244353
INF = int(4e18)

if __name__ == "__main__":
    N, C = map(int, input().split())
    H = list(map(int, input().split()))

    dp = [INF, 0, INF]  # (jump, right, left)
    for h1, h2 in zip(H, H[1:]):
        ndp = [INF, INF, INF]
        ndp[0] = min(dp) + C
        ndp[1] = min(dp[0], dp[1]) + max(0, h2 - h1)
        ndp[2] = min(dp[0], dp[2]) + max(0, h1 - h2)
        dp = ndp
    print(min(dp))
0