結果

問題 No.527 ナップサック容量問題
ユーザー 0w10w1
提出日時 2017-08-09 11:03:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,584 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-10-12 03:52:49
合計ジャッジ時間 32,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
13,568 KB
testcase_01 AC 164 ms
13,440 KB
testcase_02 AC 130 ms
13,440 KB
testcase_03 AC 162 ms
13,568 KB
testcase_04 AC 117 ms
13,312 KB
testcase_05 AC 698 ms
13,568 KB
testcase_06 AC 1,363 ms
13,440 KB
testcase_07 AC 1,114 ms
13,568 KB
testcase_08 AC 612 ms
13,568 KB
testcase_09 AC 116 ms
13,440 KB
testcase_10 AC 1,379 ms
13,440 KB
testcase_11 AC 995 ms
13,440 KB
testcase_12 AC 742 ms
13,568 KB
testcase_13 AC 1,396 ms
13,440 KB
testcase_14 AC 562 ms
13,312 KB
testcase_15 AC 845 ms
13,568 KB
testcase_16 AC 161 ms
13,440 KB
testcase_17 AC 718 ms
13,312 KB
testcase_18 AC 805 ms
13,568 KB
testcase_19 AC 178 ms
13,568 KB
testcase_20 AC 593 ms
13,568 KB
testcase_21 AC 1,584 ms
13,440 KB
testcase_22 AC 1,088 ms
13,440 KB
testcase_23 AC 1,543 ms
13,440 KB
testcase_24 AC 385 ms
13,440 KB
testcase_25 AC 1,055 ms
13,440 KB
testcase_26 AC 948 ms
13,440 KB
testcase_27 AC 966 ms
13,696 KB
testcase_28 AC 851 ms
13,440 KB
testcase_29 AC 1,564 ms
13,568 KB
testcase_30 AC 236 ms
13,568 KB
testcase_31 AC 728 ms
13,696 KB
testcase_32 AC 885 ms
13,440 KB
testcase_33 AC 762 ms
13,440 KB
testcase_34 AC 909 ms
13,568 KB
testcase_35 AC 919 ms
13,440 KB
testcase_36 AC 155 ms
13,568 KB
testcase_37 AC 722 ms
13,312 KB
testcase_38 AC 863 ms
13,568 KB
testcase_39 AC 804 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A = $<.map { |s| s.split.map &:to_i }
N = A.shift[0]
VALUE = A.pop[0]
V, W = A.transpose
dp = [0] + [-1e9.to_i] * 10**5
N.times do |i|
  1e5.to_i.downto(W[i]) do |j|
    dp[j] = [dp[j], V[i] + dp[j - W[i]]].max
  end
end
_ = 0
0.upto(1e5.to_i) do |i|
  _ = [_, dp[i]].max
  dp[i] = [dp[i], _].max
end
puts [1, dp.index(VALUE)].max
puts dp[-1] == VALUE ? :inf : [1, dp.rindex(VALUE)].max
0