List of knapsack problems
From Wikipedia, the free encyclopedia
The knapsack problem is one of the most studied problems in combinatorial optimization, with many real-life applications. For this reason, many special cases and generalisations have been examined.
Common to all versions are a set of n items, with each item having an associated profit pj and weight wj. The objective is to pick some of the items, with maximal total profit, while obeying that the maximum total weight of the chosen items must not exceed W. Generally, these coefficients are scaled to become integers, and they are almost always assumed to be positive.
The knapsack problem in its most basic form:
maximize | ||
subject to | ||
[edit] Direct generalizations
If each item can be chosen multiple times, we get the bounded knapsack problem. Notice that because the weight of each item is at least 1, we can never choose an item more than W times.
maximize | ||
subject to | ||
If the items are subdivided into k classes denoted Ni, and exactly one item must be taken from each class, we get the multiple-choice knapsack problem:
maximize | ||
subject to | ||
for all | ||
for all and all |
If for each item the profits and weights are identical, we get the subset sum problem (often the corresponding decision problem is given instead):
maximize | ||
subject to | ||
If we have n items and m knapsacks with capacities Wi, we get the multiple knapsack problem:
maximize | ||
subject to | for all | |
for all | ||
for all and all |
If in the multiple knapsack problem the weights are not the same in every container and we are allowed to choose each item multiple times, we get the multiple constrained knapsack problem: Notice that this is a general integer problem, with positive coefficients.
maximize | ||
subject to | for all | |
, xj integer | for all |
Quadratic knapsack problem
maximize | |||
subject to | |||
for all |
[edit] Knapsack-like problems
If all the profits are 1, we can try to minimize the number of items which exactly fill the knapsack. This is the change-making problem:
minimize | ||
subject to | ||
If we have a number of containers (of the same size), and we wish to pack all n items in as few containers as possible, we get the bin packing problem, which is modelled by having indicator variables container i is being used:
minimize | ||
subject to | ||
The cutting stock problem is identical to the bin packing problem, but since practical instances usually have far fewer types of items, another formulation is often used. Item j is needed Bj times, each "pattern" of items which fit into a single knapsack have a variable, xi (there are m patterns), and pattern i uses item j bij times:
minimize | ||
subject to | for all | |
for all |
If, to the multiple choice knapsack problem, we add the constraint that each subset is of size n and remove the restriction on total weight, we get the assignment problem, which is also the problem of finding a maximal bipartite matching:
minimize | ||
subject to | for all | |
for all | ||
for all and all |
Several other knapsack-like problems exists, although they are less common than the above. They include:
Collapsing knapsack problem
Nested knapsack problem
Nonlinear knapsack problem
Inverse-parametric knapsack problem
(References needed for the last four problems)
- D. Pisinger,"Algorithms for Knapsack Problems", Ph.D. thesis, DIKU, University of Copenhagen, Report 95/1 (1995).
- (2005) Knapsack Problems. Springer Verlag. ISBN 3-540-40286-1.