結果

問題 No.555 世界史のレポート
ユーザー cympfhcympfh
提出日時 2017-08-25 18:28:51
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-10-15 15:41:54
合計ジャッジ時間 2,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 89 ms
12,160 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 92 ms
12,160 KB
testcase_08 AC 94 ms
12,416 KB
testcase_09 AC 92 ms
12,416 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 117 ms
12,672 KB
testcase_16 AC 113 ms
12,800 KB
testcase_17 AC 114 ms
12,672 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def min(a, b)
  return b if a == nil
  return a if b == nil
  [a, b].min
end

def goodness(a, b, cost)
  cost
end

n = gets.to_i
c, v = gets.split.map(&:to_i)
ans = nil

q = [[1, 0, 0]]

n.times do

  r = []
  q.each do |a, b, cost|
    if a >= n
      ans = min(ans, cost)
    else
      r << [a + a, a, cost + c + v]
      r << [a + b, b, cost + v]
    end
  end

  q = r.sort_by {|a, b, cost| -goodness(a, b, cost)}[0...100]

end

p ans
0