結果

問題 No.595 登山
ユーザー simansiman
提出日時 2021-07-30 17:18:53
言語 Ruby
(3.3.0)
結果
AC  
実行時間 317 ms / 1,500 ms
コード長 434 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-09-15 12:45:44
合計ジャッジ時間 8,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,288 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 300 ms
31,616 KB
testcase_05 AC 149 ms
15,864 KB
testcase_06 AC 281 ms
30,848 KB
testcase_07 AC 103 ms
13,824 KB
testcase_08 AC 114 ms
14,848 KB
testcase_09 AC 281 ms
30,848 KB
testcase_10 AC 218 ms
25,216 KB
testcase_11 AC 199 ms
23,808 KB
testcase_12 AC 101 ms
13,440 KB
testcase_13 AC 144 ms
15,872 KB
testcase_14 AC 303 ms
30,720 KB
testcase_15 AC 305 ms
30,720 KB
testcase_16 AC 308 ms
30,848 KB
testcase_17 AC 309 ms
30,720 KB
testcase_18 AC 308 ms
30,720 KB
testcase_19 AC 313 ms
32,512 KB
testcase_20 AC 311 ms
32,640 KB
testcase_21 AC 313 ms
32,512 KB
testcase_22 AC 313 ms
32,384 KB
testcase_23 AC 311 ms
32,384 KB
testcase_24 AC 83 ms
12,160 KB
testcase_25 AC 85 ms
12,160 KB
testcase_26 AC 317 ms
32,512 KB
testcase_27 AC 314 ms
32,000 KB
testcase_28 AC 305 ms
31,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, P = gets.split.map(&:to_i)
H = gets.split.map(&:to_i)

dp = Array.new(N) { Array.new(2, Float::INFINITY) }

dp[0][0] = 0
dp[0][1] = 0

1.upto(N - 1) do |i|
  bh = H[i - 1]
  h = H[i]

  cost1 = dp[i - 1].min + P
  cost2 = dp[i - 1][0] + [0, h - bh].max
  cost3 = dp[i - 1][1] + [0, bh - h].max

  dp[i][0] = [cost1, cost2].min

  if i > 1
    dp[i][1] = [cost1, cost3].min
  else
    dp[i][1] = cost1
  end
end

puts dp[N - 1].min
0