結果

問題 No.555 世界史のレポート
ユーザー yuruhiyayuruhiya
提出日時 2020-07-21 17:30:08
言語 Crystal
(1.11.2)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 11,110 ms
コンパイル使用メモリ 296,320 KB
実行使用メモリ 20,120 KB
最終ジャッジ日時 2024-06-30 20:38:01
合計ジャッジ時間 12,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 61 ms
15,360 KB
testcase_11 AC 66 ms
17,184 KB
testcase_12 AC 59 ms
15,104 KB
testcase_13 AC 49 ms
12,928 KB
testcase_14 AC 66 ms
17,664 KB
testcase_15 AC 67 ms
17,416 KB
testcase_16 AC 55 ms
16,264 KB
testcase_17 AC 61 ms
17,124 KB
testcase_18 AC 69 ms
16,640 KB
testcase_19 AC 89 ms
20,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
c, v = read_line.split.map &.to_i
dp = Array.new(n + 1) { Hash(Int32, Int32).new(10 ** 9) }
dp[2][1] = c + v

(2...n).each do |len|
  dp[len].each do |clip, cost|
    dp[{len + clip, n}.min][clip] = {cost + v, dp[{len + clip, n}.min][clip]}.min
    dp[{len + len, n}.min][len] = {cost + c + v, dp[{len + len, n}.min][len]}.min
  end
end
puts dp[n].values.min
0