結果

問題 No.595 登山
ユーザー pluto77pluto77
提出日時 2018-01-04 15:22:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 738 ms / 1,500 ms
コード長 418 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 50,616 KB
最終ジャッジ日時 2024-06-02 08:30:56
合計ジャッジ時間 16,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
33,152 KB
testcase_01 AC 142 ms
32,896 KB
testcase_02 AC 136 ms
33,024 KB
testcase_03 AC 138 ms
33,024 KB
testcase_04 AC 697 ms
49,868 KB
testcase_05 AC 299 ms
37,836 KB
testcase_06 AC 613 ms
47,472 KB
testcase_07 AC 190 ms
34,688 KB
testcase_08 AC 217 ms
35,200 KB
testcase_09 AC 618 ms
47,424 KB
testcase_10 AC 466 ms
43,068 KB
testcase_11 AC 437 ms
41,968 KB
testcase_12 AC 178 ms
34,432 KB
testcase_13 AC 283 ms
37,352 KB
testcase_14 AC 715 ms
44,932 KB
testcase_15 AC 717 ms
44,940 KB
testcase_16 AC 728 ms
44,948 KB
testcase_17 AC 706 ms
45,080 KB
testcase_18 AC 720 ms
45,056 KB
testcase_19 AC 727 ms
50,492 KB
testcase_20 AC 738 ms
50,488 KB
testcase_21 AC 728 ms
50,616 KB
testcase_22 AC 736 ms
50,616 KB
testcase_23 AC 730 ms
50,564 KB
testcase_24 AC 139 ms
33,024 KB
testcase_25 AC 136 ms
33,024 KB
testcase_26 AC 719 ms
50,492 KB
testcase_27 AC 704 ms
46,832 KB
testcase_28 AC 709 ms
46,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_595

INF=float('inf')
dp=[[INF for i in xrange(2)] for j in xrange(200000)]
n,p=map(int,raw_input().split())
h=map(int,raw_input().split())
dp[0][0]=0
for i in xrange(n-1):
 dp[i+1][0]=min(dp[i+1][0],dp[i][0]+min(p,max(h[i+1]-h[i],0)))
 dp[i+1][1]=min((dp[i+1][1],dp[i][0]+p))
 dp[i+1][1]=min(dp[i+1][1],dp[i][1]+min(p,max(h[i]-h[i+1],0)))
 dp[i+1][0]=min(dp[i+1][0],dp[i][1]+p)
print min(dp[n-1][0],dp[n-1][1])
0