Rubyでナップザック問題のコードをかいて入っているアイテムの種類を出力しようとしたら上手くいかなかった
下の記事を参考にしてRubyでナップザックに入っているアイテムを出力しようとしたのですが、ナップザックに入っているのかをうまく判定できていないようです。
参考にさせていただいた記事
https://qiita.com/fukumone/items/19f13c143dd006fbb1aa
Ruby
1require "time" 2 3@all_times = [] 4@selected_items = [] 5N = 4 6ARRAY = [[2, 3], [1, 2], [3, 4], [2, 2]] 7ARRAY_W = [2, 1, 3, 2] 8ARRAY_V = [3, 2, 4, 2] 9W = 5 10 11def rec(i, j) 12 t1 = Time.now 13 res = 0 14 if i == N 15 # もう品物は残っていない 16 res = 0 17 elsif j < ARRAY_W[i] 18 #この品物は入らない 19 res = rec(i + 1, j) 20 else 21 #入れない場合と入れる場合の両方を試す 22 if rec(i + 1, j) < rec(i + 1, j - ARRAY_W[i]) + ARRAY_V[i] 23 in_the_knap = true 24 res = rec(i + 1, j - ARRAY_W[i]) + ARRAY_V[i] 25 else 26 in_the_knap = false 27 res = rec(i + 1, j) 28 end 29 if in_the_knap == true 30 now_item = [ARRAY_W[i], ARRAY_V[i]] 31 @selected_items.push(now_item) 32 end 33 end 34 t2 = Time.now 35 @all_times.push(t2 - t1) 36 res 37end 38 39puts "rec : #{rec(0, W)}" 40p @all_times.sum.round(4) 41@selected_items.uniq! 42p :selected_items, @selected_items 43
# 出力 rec : 7 0.0004 :selected_items [[2, 2], [3, 4], [2, 3]]
"in_the_knap"でナップザックに入ったかを判定しているつもりです...
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。