結果

問題 No.527 ナップサック容量問題
ユーザー 0w10w1
提出日時 2017-08-09 10:48:02
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 525 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-10-12 03:50:25
合計ジャッジ時間 48,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
12,800 KB
testcase_01 AC 194 ms
12,672 KB
testcase_02 AC 145 ms
12,800 KB
testcase_03 AC 202 ms
12,672 KB
testcase_04 AC 121 ms
12,800 KB
testcase_05 AC 1,073 ms
12,800 KB
testcase_06 TLE -
testcase_07 AC 1,773 ms
12,800 KB
testcase_08 AC 957 ms
12,800 KB
testcase_09 AC 122 ms
12,800 KB
testcase_10 TLE -
testcase_11 AC 1,571 ms
12,672 KB
testcase_12 AC 1,156 ms
12,800 KB
testcase_13 TLE -
testcase_14 AC 862 ms
12,800 KB
testcase_15 AC 1,350 ms
12,800 KB
testcase_16 AC 196 ms
12,928 KB
testcase_17 AC 1,114 ms
12,800 KB
testcase_18 AC 1,260 ms
12,672 KB
testcase_19 AC 220 ms
12,672 KB
testcase_20 AC 897 ms
12,672 KB
testcase_21 TLE -
testcase_22 AC 1,698 ms
12,800 KB
testcase_23 TLE -
testcase_24 AC 571 ms
12,800 KB
testcase_25 AC 1,666 ms
12,800 KB
testcase_26 AC 1,496 ms
12,800 KB
testcase_27 AC 1,556 ms
12,800 KB
testcase_28 AC 1,309 ms
12,800 KB
testcase_29 TLE -
testcase_30 AC 324 ms
12,928 KB
testcase_31 AC 1,133 ms
12,928 KB
testcase_32 AC 1,375 ms
12,800 KB
testcase_33 AC 1,193 ms
12,928 KB
testcase_34 AC 1,433 ms
12,800 KB
testcase_35 AC 1,451 ms
12,672 KB
testcase_36 AC 171 ms
12,672 KB
testcase_37 AC 1,084 ms
12,800 KB
testcase_38 AC 1,363 ms
12,800 KB
testcase_39 AC 1,280 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
V, W = [], []
N.times do |i|
  v, w = gets.split.map &:to_i
  V << v
  W << w
end
VALUE = gets.to_i

dp = [-1.to_i] * (1e5.to_i + 1)
dp[0] = 0
N.times do |i|
  1e5.to_i.downto(0) do |j|
    next if dp[i][j] == -1
    dp[j + W[i]] = [dp[j + W[i]], dp[j] + V[i]].max if j + W[i] <= 1e5.to_i
  end
end
_ = 0
(1e5 + 1).to_i.times do |i|
  _ = [_, dp[i]].max
  dp[i] = [dp[i], _].max
end

puts [dp.find_index(VALUE), 1].max
puts VALUE == V.inject(:+) ? "inf" : dp[0..1e5.to_i].take_while { |x| x <= VALUE }.size - 1
0