結果

問題 No.595 登山
ユーザー pluto77pluto77
提出日時 2018-01-04 15:22:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 885 ms / 1,500 ms
コード長 418 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 50,488 KB
最終ジャッジ日時 2024-12-23 03:38:19
合計ジャッジ時間 18,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
32,896 KB
testcase_01 AC 145 ms
32,896 KB
testcase_02 AC 146 ms
32,896 KB
testcase_03 AC 144 ms
32,896 KB
testcase_04 AC 721 ms
49,356 KB
testcase_05 AC 316 ms
37,840 KB
testcase_06 AC 666 ms
47,088 KB
testcase_07 AC 211 ms
34,432 KB
testcase_08 AC 238 ms
35,200 KB
testcase_09 AC 674 ms
47,296 KB
testcase_10 AC 515 ms
43,068 KB
testcase_11 AC 473 ms
41,836 KB
testcase_12 AC 193 ms
34,048 KB
testcase_13 AC 305 ms
37,228 KB
testcase_14 AC 777 ms
44,932 KB
testcase_15 AC 780 ms
44,812 KB
testcase_16 AC 795 ms
44,816 KB
testcase_17 AC 775 ms
44,824 KB
testcase_18 AC 777 ms
44,804 KB
testcase_19 AC 789 ms
50,360 KB
testcase_20 AC 777 ms
50,364 KB
testcase_21 AC 769 ms
50,488 KB
testcase_22 AC 756 ms
50,364 KB
testcase_23 AC 758 ms
50,364 KB
testcase_24 AC 138 ms
33,024 KB
testcase_25 AC 147 ms
33,024 KB
testcase_26 AC 760 ms
50,248 KB
testcase_27 AC 743 ms
46,576 KB
testcase_28 AC 885 ms
46,532 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