List of knapsack problems

From Wikipedia, the free encyclopedia
Jump to: navigation, search

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 generalizations have been examined.

Common to all versions are a set of n items, with each item 1 \leq j \leq n 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 \sum_{j=1}^n p_j x_j
subject to \sum_{j=1}^n w_j x_j \leq W,
 x_j \in \{0,1\} \forall j \in \{1,\ldots, n\}

Contents


[edit] Direct generalizations

One common variant is that each item can be chosen multiple times. The bounded knapsack problem specifies, for each item j, an upper bound uj (which may be a positive integer, or infinity) on the number of times item j can be selected:

maximize \sum_{j=1}^n p_j x_j
subject to \sum_{j=1}^n w_j x_j \leq W,
 u_j \geq x_j \geq 0, x_j integral for all j

The unbounded knapsack problem (sometimes called the integer knapsack problem) does not put any upper bounds on the number of times an item may be selected:

maximize \sum_{j=1}^n p_j x_j
subject to \sum_{j=1}^n w_j x_j \leq W,
 x_j \geq 0, x_j integral for all j

The unbounded variant was shown to be NP-complete in 1975 by Lueker[1]. Both the bounded and unbounded variants admit an FPTAS (essentially the same as the one used in the 0-1 knapsack problem).

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 \sum_{i=1}^k\sum_{j\in N_i} p_{ij} x_{ij}
subject to \sum_{i=1}^k\sum_{j\in N_i} w_{ij} x_{ij} \leq W,
\sum_{j \in N_i}x_{ij} = 1, for all 1 \leq i \leq k
 x_{ij} \in \{0,1\} for all 1 \leq i \leq k and all j \in N_i

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 \sum_{j=1}^n p_j x_j
subject to \sum_{j=1}^n p_j x_j \leq W,
 x_j \in \{0,1\}

If we have n items and m knapsacks with capacities Wi, we get the multiple knapsack problem:

maximize \sum_{i=1}^m\sum_{j=1}^n p_j x_{ij}
subject to \sum_{j=1}^n w_j x_{ij} \leq W_i, for all 1 \leq i \leq m
\sum_{i=1}^m x_{ij} \leq 1, for all 1 \leq j \leq n
 x_{ij} \in \{0,1\} for all 1 \leq j \leq n and all 1 \leq i \leq m

Quadratic knapsack problem:

maximize \sum_{j=1}^n p_j x_j+\sum_{i=1}^{n-1}\sum_{j=i+1}^n p_{ij} x_i x_j
subject to \sum_{j=1}^n w_j x_j \leq W,
 x_j \in \{0,1\} for all 1 \leq j \leq n

The Set-Union Knapsack Problem:

SUKP is defined[2] as follows: Given a set of n items N = \{1, \ldots, n\} and a set of m so called elements P = \{1, \ldots, m\}, each item j corresponds to a subset Pj of the element set P. The items j have non-negative profits pj, j = 1, \ldots, n, and the elements i have non-negative weights wi, i = 1, \ldots, m. The total weight of a set of items is given by the total weight of the elements of the union of the corresponding element sets. The objective is to find a subset of the items with total weight not exceeding the knapsack capacity and maximal profit.

[edit] Multiple constraints

If there is more than one constraint (for example, both a volume limit and a weight limit, where the volume and weight of each item are not related), we get the multiply constrained knapsack problem, multi-dimensional knapsack problem, or m-dimensional knapsack problem. (Note, "dimension" here does not refer to the shape of any items.) This has 0-1, bounded, and unbounded variants; the unbounded one is shown below.

maximize \sum_{j=1}^n p_j x_j
subject to \sum_{j=1}^n w_{ij} x_j \leq W_i, for all 1 \leq i \leq m
x_j \geq 0, xj integer for all  1\leq j \leq n

The 0-1 variant (for any fixed m \ge 2) was shown to be NP-complete around 1980 and more strongly, has no FPTAS unless P=NP[3][4].

The bounded and unbounded variants (for any fixed m \ge 2) also exhibit the same hardness[5].

For any fixed m \ge 2, these problems do admit a pseudo-polynomial time algorithm (similar to the one for basic knapsack) and a PTAS[6].

[edit] Knapsack-like problems

If all the profits are 1, we can try to minimize the number of items which exactly fill the knapsack:

minimize \sum_{j=1}^n x_j
subject to \sum_{j=1}^n w_j x_j = W,
 x_j \in \{0,1\},  \forall j \in \{1,\ldots,n\}

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 y_i=1 \Leftrightarrow container i is being used:

minimize \sum_{i=1}^n y_i
subject to \sum_{j=1}^n w_j x_{ij} \leq Wy_i, \forall i \in \{1,\ldots,n\}
\sum_{i=1}^n x_{ij} = 1 \forall j \in \{1,\ldots,n\}
 y_i \in \{0,1\} \forall i \in \{1,\ldots,n\}
 x_{ij} \in \{0,1\} \forall i \in \{1,\ldots,n\} \wedge \forall j \in \{1,\ldots,n\}

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 \sum_{i=1}^m x_i
subject to \sum_{i=1}^m b_{ij} x_i \leq B_j, for all 1 \leq j \leq n
x_i \in \{0,1,\ldots ,n\} for all 1\leq i \leq m

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 \sum_{i=1}^k\sum_{j=1}^n p_{ij} x_{ij}
subject to \sum_{i=1}^n x_{ij} = 1, for all 1 \leq j \leq n
\sum_{j=1}^n x_{ij} = 1, for all 1 \leq i \leq n
 x_{ij} \in \{0,1\} for all 1 \leq i \leq k and all j \in N_i

In the Maximum Density Knapsack variant there is an initial weight w0, and we maximize the density of selected of items which do not violate the capacity constraint: [7]

maximize \frac{\sum_{j=1}^n x_j p_j}{w_0 +\sum_{j=1}^n x_j w_j}
subject to \sum_{j=1}^n w_j x_j \leq W,
 x_j \in \{0,1\},  \forall j \in \{1,\ldots,n\}

Although less common than those above, several other knapsack-like problems exist, including:

  • Collapsing knapsack problem
  • Nested knapsack problem
  • Nonlinear knapsack problem
  • Inverse-parametric knapsack problem[citation needed]

[edit] References

  1. ^ Lueker, G.S. (1975). "Two NP-complete problems in nonnegative integer programming". Report No. 178, Computer Science Laboratory, Princeton. 
  2. ^ Knapsack Problems. Springer Verlag. 2005. ISBN 3-540-40286-1. 
  3. ^ Gens, G. V. and Levner, E. V. (1979). "Complexity and Approximation Algorithms for Combinatorial Problems: A Survey". Central Economic and Mathematical Institute, Academy of Sciences of the USSR, Moscow. 
  4. ^ "On the Existence of Fast Approximation Schemes". Nonlinear Programming (Academic Press) 4: 415–437. 1980. 
  5. ^ Magazine, M. J.; Chern, M.-S. (1984). "A Note on Approximation Schemes for Multidimensional Knapsack Problems". Mathematics of Operations Research 9 (2): 244–247. doi:10.1287/moor.9.2.244. 
  6. ^ H. Kellerer and U. Pferschy and D. Pisinger (2004). Knapsack Problems. Springer. 
  7. ^ Cohen, R. and Katzir, L. 2008. The Generalized Maximum Coverage Problem. Inf. Process. Lett. 108, 1 (Sep. 2008), 15-22.
Personal tools
Namespaces
Variants
Actions
Navigation
Interaction
Toolbox
Print/export