What is a possible algorithm for the 0-1 Knapsack problem with 2 sacks?
-
More formally, say, we have 2 sacks with capacities c1 and c2. There are N items with profits pi and weights wi. As in 0-1 Knapsack problem, we need to fill in c1 and c2 with these items in such a way the overall profit is maximized. Assume pi and wi are positive integers! Also, how much optimal solutions are there? (Since, there can be more than one solution because, if m1=m2, that straight away gives us 2 possible solution as the items in m1 and m2 can be interchanged. Another example would be when there are more than one item with same weight and profit).
-
Answer:
In the usual knapsack problem, we would define a variable best[i][j] as the maximum profit we could get from the first i items such that a total weight of exactly j was used. Here, we would have a variable best[i][j][k] instead : the maximum profit we could achieve from the first i items such that the weight of exactly j was used in knapsack #1 and a weight of exactly k was used in knapsack #2. This will solve the problem. For counting the number of ways, keep another variable cnt[i][j][k] : The number of ways of achieving a profit of best[i][j][k] fromĀ the first i items such that the weight of exactly j was used in knapsack #1 and a weight of exactly k was used in knapsack #2. The DP is pretty easy to derive along with the knapsack DP.
Raziman T.V. at Quora Visit the source
Related Q & A:
- What careers are possible if I do a degree in Criminology?Best solution by criminologycareers.about.com
- What has a density of 2.65?
- What's the difference between TiVo Series 1 and Tivo Series 2?Best solution by Yahoo! Answers
- What's the difference between Web 3.0 and Web 2.0?Best solution by wiki.answers.com
- What is a marketing problem with a product/company that could be addressed by research?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.