結果

問題 No.527 ナップサック容量問題
ユーザー 0w10w1
提出日時 2017-08-09 11:01:57
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-10-12 03:51:33
合計ジャッジ時間 31,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
13,312 KB
testcase_01 AC 159 ms
13,440 KB
testcase_02 WA -
testcase_03 AC 160 ms
13,440 KB
testcase_04 AC 115 ms
13,440 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,107 ms
13,568 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,383 ms
13,312 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 560 ms
13,440 KB
testcase_15 AC 840 ms
13,440 KB
testcase_16 AC 159 ms
13,312 KB
testcase_17 AC 707 ms
13,568 KB
testcase_18 AC 797 ms
13,440 KB
testcase_19 AC 172 ms
13,440 KB
testcase_20 AC 582 ms
13,568 KB
testcase_21 AC 1,566 ms
13,440 KB
testcase_22 AC 1,068 ms
13,568 KB
testcase_23 AC 1,524 ms
13,440 KB
testcase_24 AC 380 ms
13,312 KB
testcase_25 AC 1,039 ms
13,312 KB
testcase_26 AC 945 ms
13,568 KB
testcase_27 AC 958 ms
13,440 KB
testcase_28 AC 837 ms
13,440 KB
testcase_29 AC 1,568 ms
13,440 KB
testcase_30 WA -
testcase_31 AC 725 ms
13,440 KB
testcase_32 AC 873 ms
13,568 KB
testcase_33 AC 753 ms
13,440 KB
testcase_34 AC 903 ms
13,568 KB
testcase_35 AC 901 ms
13,568 KB
testcase_36 AC 145 ms
13,568 KB
testcase_37 AC 691 ms
13,440 KB
testcase_38 AC 863 ms
13,568 KB
testcase_39 AC 799 ms
13,440 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
1e5.to_i.times do |i|
  _ = [_, dp[i]].max
  dp[i] = [dp[i], _].max
end
p [1, dp.index(VALUE)].max
p dp[-1] == VALUE ? :inf : [1, dp.rindex(VALUE)].max
0