結果

問題 No.527 ナップサック容量問題
ユーザー letrangerjpletrangerjp
提出日時 2017-06-10 20:57:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 915 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-24 15:46:40
合計ジャッジ時間 13,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,032 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 92 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 221 ms
12,032 KB
testcase_06 AC 751 ms
12,288 KB
testcase_07 AC 492 ms
12,288 KB
testcase_08 AC 179 ms
12,288 KB
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 721 ms
12,288 KB
testcase_11 AC 346 ms
12,032 KB
testcase_12 AC 241 ms
12,288 KB
testcase_13 AC 795 ms
12,288 KB
testcase_14 AC 190 ms
12,160 KB
testcase_15 AC 320 ms
12,288 KB
testcase_16 AC 90 ms
12,288 KB
testcase_17 AC 231 ms
12,160 KB
testcase_18 AC 274 ms
12,416 KB
testcase_19 AC 95 ms
12,288 KB
testcase_20 AC 177 ms
12,160 KB
testcase_21 AC 896 ms
12,288 KB
testcase_22 AC 511 ms
12,288 KB
testcase_23 AC 757 ms
12,288 KB
testcase_24 AC 118 ms
12,160 KB
testcase_25 AC 419 ms
12,416 KB
testcase_26 AC 354 ms
12,416 KB
testcase_27 AC 388 ms
12,288 KB
testcase_28 AC 332 ms
12,288 KB
testcase_29 AC 915 ms
12,160 KB
testcase_30 AC 87 ms
12,160 KB
testcase_31 AC 86 ms
12,032 KB
testcase_32 AC 90 ms
12,160 KB
testcase_33 AC 87 ms
12,160 KB
testcase_34 AC 89 ms
12,160 KB
testcase_35 AC 353 ms
12,288 KB
testcase_36 AC 87 ms
12,160 KB
testcase_37 AC 238 ms
12,288 KB
testcase_38 AC 303 ms
12,288 KB
testcase_39 AC 270 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
VA, WA = N.times.map{ gets.split.take(2).map(&:to_i)}.sort.transpose
V = gets.to_i

$dp = [0]*(WA.sum+1)

N.times{|i|
  (WA.sum).downto(WA[i]){|ii|
    $dp[ii] = [$dp[ii], $dp[ii - WA[i]] + VA[i]].max
  }
}
# p $dp
min = $dp.bsearch_index{|v|v>=V}
max = $dp.bsearch_index{|v|v>V}
puts [min, 1].max
puts max.nil? ? :inf : max-1
0