Hot answers tagged knapsack
6
When allocating the arrays for the 2nd dimension you do:
for(i=0;i<W+1;i++)
A[i]=(int *)malloc(sizeof(int)*(W+1));
It should be n+1 instead of W+1 in the loop. You should iterate over the "items" dimensions and allocate "weight" dimension.
The solution will work perfectly for n <= W, but for larger number of items (W < n) - you will get ...
5
What did you try?
The idea, given the problem you stated (which specifies we must use recursion) is simple: for each item that you can take, see if it's better to take it or not. So there are only two possible path:
you take the item
you don't take it
When you take the item, you remove it from your list and you decrease the capacity by the weight of ...
4
I would map the problem to SAT and use a SAT solver. There is a pretty natural mapping. Define the variables:
x_s_i_j_d = segment s starts at coordinates (i,j) and goes in direction d
(d is "right" or "down")
First, iterate over all the segments and starting positions, and see which are viable given the starting matrix.
example, M:
000000000000
...
3
I will assume each of the n items can only be used once, and you must maximize your profit.
Original knapsack is dp[i] = best profit you can obtain for weight i
for i = 1 to n do
for w = maxW down to a[i].weight do
if dp[w] < dp[w - a[i].weight] + a[i].gain
dp[w] = dp[w - a[i].weight] + a[i].gain
Now, since we have two knapsacks, we can ...
3
Your first case fires when ys contains. so for knapsack [foo,bar] [] 42, you get back [foo, bar], which is what you want. However it does not fire when ys contains nothing except elements that would put you over the max weight, i.e. knapsack [(x, 20), (y,20)] [(bla, 5)] will return [] and thus discard the previous result. Since this is not what you want you ...
3
getting the elements you pack from the matrix can be done using the data form the matrix, without storing any additional data.
pseudo code:
line <- W
i <- n
while (i> 0):
if dp[line][i] - dp[line][i-1] == value(i):
the element 'i' is in the knapsack
i <- i-1
else if dp[line][i] > dp[line][i-1]:
line <- line - 1
...
3
Using a simple greedy algorithm will not provide any bounds on the quality of the solution in comparison to OPT.
Here is a fully polynomial time (1 - epsilon) * OPT approximation psuedocode for knapsack:
items = [...] # items
profit = {...} # this needs to be the profit for each item
sizes = {...} # this needs to be the sizes of each item
epsilon = 0.1 ...
3
This 2D Bin Packing problem looks like it's NP hard.
Here are a couple of your options:
Brute force or better yet branch and bound. Doesn't scale (at all!), but will find you the optimal solution (not in our lifetime maybe).
Deterministic algorithm: sort the blocks on largest size or largest side and go through that list one by one and assign it the best ...
2
The typical way to cut down on the number of iterations on a problem like this is to calculate a bound on a subtree by solving a linear program (like your problem, but the remaining variables are allowed to take on fractional values). Simplex solves the linear program in approximately quadratic time instead of exponential. The best solution for the linear ...
2
Consider each partial solution a Node. Simply add whatever you use into each of these nodes and whichever node becomes the answer at the end will contain the set of items you used.
So each time you find a new solution you just set the list of items to the list of items of the new optimal solution and repeat for each.
2
Some improvements on your working version:
import Data.List
import Data.Function(on)
ks = knapsack []
knapsack :: [(Int, Int)] -> [(Int, Int)] -> Int -> [(Int, Int)]
knapsack xs [] _ = xs
knapsack xs ys max =
foldr (maxOf) [] (xs: [knapsack (y:xs) (delete y ys) max
| y <- ys, weightOf(y:xs) <= max ] ) where
...
2
Yes, your algorithm gets you the same result. This enhancement to the classic 0-1 Knapsack is reasonably popular: Wikipedia explains it as follows:
Additionally, if we use only a 1-dimensional array m[w] to store the current optimal values and pass over this array i + 1 times, rewriting from m[W] to m[1] every time, we get the same result for only O(W) ...
2
Just a general comment: Instead of keeping track of processed movies, I find it much more natural to first obtain (for example, via findall/3) the list of movies that still need to be processed, and then simply work this list off. So you have burn_dvd(List0, DVD, List), which takes a list of movies (possibly in combination with their sizes, say as terms of ...
2
I assume one can reduce the problem to the knapsack problem.
Note that
x1 * x2 * ... * xn <= M <->
log(x1*x2*...*xn) <= log(M) <->
log(x1) + log(x2) + ... + log(xn) <= log(M)
So finding the optimal solution using the knapsack can be done:
weight'(item) = log(weight(item))
value(item) = value(item)
M' = log(M)
run Knapsack on the ...
2
Dynamic programming can run in time O(numItems * knapsackCapacity) and O(knapsackCapacity) memory. This means that, for your specifications, you would have:
about 20.000.000 x 500 = 10.000.000.000 operations - would probably finish executing in a few hours, depending on your machine;
since the profit of one item is at most 10 and you can have at most 500 ...
2
Dynamic Programming (DP):
Exact algorithm - Finds global optimal solution
Long running time
Uses a lot of memory
Very simple to implement
Genetic Algorithm (GA):
Estimation - Doesn't necessarily find the global optimal solution
Short running time
Memory usage depends on number of individuals but is generally managable
Quality of solution depends on ...
2
I had to do this for my homework so I tested all of the above codes (except for the Python one), but none of them work for every corner case.
This is my code, it works for every corner case.
static int[] values = new int[] {894, 260, 392, 281, 27};
static int[] weights = new int[] {8, 6, 4, 0, 21};
static int W = 30;
private static int knapsack(int i, int ...
2
http://codegolf.stackexchange.com/questions/3731/solve-the-knapsack-problem
Read up on this.
Hopefully you've taking algebra 2..
Here is some PHP code that might help you out:
http://rosettacode.org/wiki/Knapsack_problem/0-1#PHP
2
This is a version of the Knapsack problem known as the 0-1 knapsack.
You are making some silly mistakes in your code.
To begin with the first integer in input is the weight and the second is the value. While you are taking first as value and second as weight. Moreover you are taking n+1 values as input 0 to N inclusive.
Now in your algorithm, you are ...
2
You can use the same approach of knapsack problem, but instead of 2D matrix, you will have a 3D table, a dimension for each parameter (2 constraint + index).
The recursive formula will be similar, but of course will be done for both parameters.
f(item,cost1,cost2) = max {
f(item-1,cost1,cost2),
...
2
I believe the problem is that in return max(self.recursive_dynamic_knap(v, w, i+1,W), self.recursive_dynamic_knap(v, w, i+1, W-w[i]) + v[i]) one of the calls to recursive_dynamic_knap is returning v, which is a list, and which makes no sense as an argument to max() because it is "unorderable" (can't sensibly be judged to be greater than or less than an int)
2
This looks like a variation of the 'subset sum' (see: http://en.wikipedia.org/wiki/Subset_sum_problem) problem which is known to to be NP complete, so unfortunately most probably there won't be any clever algorithm at all that in the worst-case will run any faster that exponential in the number of items.
In case there are not many items to check (something ...
1
Sounds like weighted interval scheduling.
A list of tasks is given as a set of time intervals; for instance, one task might run from 2:00 to 5:00 and another task might run from 6:00 to 8:00. Posed as an optimization problem, the goal is to maximize the number of executed tasks without overlapping the tasks. A request corresponds to an interval of time. ...
1
Usually the greedy heuristic works pretty well for the knapsack problem. If you just come up with a small problem instance at random, it's likely that applying the greedy heuristic will produce a good, or possibly even optimal solution. (The quality of a solution is measured by taking the total value of the objects it includes, and computing the ratio of ...
1
There is a version of the knapsack problem documented well at https://sites.google.com/site/mikescoderama/Home/0-1-knapsack-problem-in-p in Python.
EDIT: Nevermind, I skipped the part where the first line input defines C and N. That said, your input example doesn't seem to load with the code you provided (it is looking for one more pair than would be ...
1
The way I would approach this would be to assess each coin in the set to determine its "value density" (for want of a better term) - value divided by weight. In your example the first coin has a value density of 1, then the second coin has a value density of 30/50 = 0.6.
Then starting with a total weight of zero, apply the lowest "value density" coins you ...
1
Bin-packing or Knapsack?
This problem appears to have more in common with the bin-packing problem than with the knapsack problem. In the knapsack problem, you only have one single knapsack to fill, but it has a capacity you must not exceed. And you must do this while maximizing the total value of the items you choose to put in. Here, you don't have to use ...
1
My previous answer was 'quick and dirty', and soon shows its limits, as the number of movies grows. Here a better way to find the best fit, and a comparison with previous answer (reformulated as required by test).
The key to optimize is suggested by the tag knapsack, that rightly Axel used when posted the question. I've searched in CLP(FD) support an ...
1
A 'best practice rule' of Prolog says that assert/retract should be avoided except when it's absolutely required (i.e. when there is no a declarative approach).
Here a program using select/3 to generate all combinations
movie(a, 10).
movie(b, 3).
movie(c, 5).
movie(d, 6).
movie(e, 10).
dvdsize(20).
burn(Best) :-
findall(N-S, movie(N,S), L),
...
1
If you want things to behave as if you kept asking for another solution after each one is provided, but gather them all up into a list, findall is what you want.
If this is all happening within a single query, you could pass around a list of used movies. For example, burn loop would take as an argument the list of movies used so far; fitfuzzy would take ...
Only top voted, non community-wiki answers of a minimum length are eligible
