HOME

TheInfoList



OR:

The knapsack problem is a problem in combinatorial optimization: Given a set of items, each with a weight and a value, determine the number of each item to include in a collection so that the total weight is less than or equal to a given limit and the total value is as large as possible. It derives its name from the problem faced by someone who is constrained by a fixed-size knapsack and must fill it with the most valuable items. The problem often arises in
resource allocation In economics, resource allocation is the assignment of available resources to various uses. In the context of an entire economy, resources can be allocated by various means, such as markets, or planning. In project management, resource allocatio ...
where the decision-makers have to choose from a set of non-divisible projects or tasks under a fixed budget or time constraint, respectively. The knapsack problem has been studied for more than a century, with early works dating as far back as 1897. The name "knapsack problem" dates back to the early works of the mathematician
Tobias Dantzig Tobias Dantzig (; February 19, 1884 – August 9, 1956) was an American mathematician, the father of George Dantzig, and the author of '' Number: The Language of Science (A critical survey written for the cultured non-mathematician)'' (1930) and '' ...
(1884–1956), and refers to the commonplace problem of packing the most valuable or useful items without overloading the luggage.


Applications

Knapsack problems appear in real-world decision-making processes in a wide variety of fields, such as finding the least wasteful way to cut raw materials, selection of
investment Investment is the dedication of money to purchase of an asset to attain an increase in value over a period of time. Investment requires a sacrifice of some present asset, such as time, money, or effort. In finance, the purpose of investing is ...
s and portfolios, selection of assets for asset-backed securitization, and generating keys for the Merkle–Hellman and other knapsack cryptosystems. One early application of knapsack algorithms was in the construction and scoring of tests in which the test-takers have a choice as to which questions they answer. For small examples, it is a fairly simple process to provide the test-takers with such a choice. For example, if an exam contains 12 questions each worth 10 points, the test-taker need only answer 10 questions to achieve a maximum possible score of 100 points. However, on tests with a heterogeneous distribution of point values, it is more difficult to provide choices. Feuerman and Weiss proposed a system in which students are given a heterogeneous test with a total of 125 possible points. The students are asked to answer all of the questions to the best of their abilities. Of the possible subsets of problems whose total point values add up to 100, a knapsack algorithm would determine which subset gives each student the highest possible score. A 1999 study of the Stony Brook University Algorithm Repository showed that, out of 75 algorithmic problems, the knapsack problem was the 19th most popular and the third most needed after
suffix tree In computer science, a suffix tree (also called PAT tree or, in an earlier form, position tree) is a compressed trie containing all the suffixes of the given text as their keys and positions in the text as their values. Suffix trees allow parti ...
s and the bin packing problem.


Definition

The most common problem being solved is the 0-1 knapsack problem, which restricts the number ''x_i'' of copies of each kind of item to zero or one. Given a set of ''n'' items numbered from 1 up to ''n'', each with a weight ''w_i'' and a value ''v_i'', along with a maximum weight capacity ''W'', : maximize \sum_^n v_i x_i : subject to \sum_^n w_i x_i \leq W and x_i \in \. Here ''x_i'' represents the number of instances of item ''i'' to include in the knapsack. Informally, the problem is to maximize the sum of the values of the items in the knapsack so that the sum of the weights is less than or equal to the knapsack's capacity. The bounded knapsack problem (BKP) removes the restriction that there is only one of each item, but restricts the number x_i of copies of each kind of item to a maximum non-negative integer value c: : maximize \sum_^n v_i x_i : subject to \sum_^n w_i x_i \leq W and x_i \in \. The unbounded knapsack problem (UKP) places no upper bound on the number of copies of each kind of item and can be formulated as above except that the only restriction on x_i is that it is a non-negative integer. : maximize \sum_^n v_i x_i : subject to \sum_^n w_i x_i \leq W and x_i \in \mathbb, \ x_i \geq 0. One example of the unbounded knapsack problem is given using the figure shown at the beginning of this article and the text "if any number of each box is available" in the caption of that figure.


Computational complexity

The knapsack problem is interesting from the perspective of computer science for many reasons: * The
decision problem In computability theory and computational complexity theory, a decision problem is a computational problem that can be posed as a yes–no question of the input values. An example of a decision problem is deciding by means of an algorithm whe ...
form of the knapsack problem (''Can a value of at least ''V'' be achieved without exceeding the weight ''W''?'') is NP-complete, thus there is no known algorithm that is both correct and fast (polynomial-time) in all cases. * While the decision problem is NP-complete, the optimization problem is not, its resolution is at least as difficult as the decision problem, and there is no known polynomial algorithm which can tell, given a solution, whether it is optimal (which would mean that there is no solution with a larger ''V'', thus solving the NP-complete decision problem). * There is a pseudo-polynomial time algorithm using
dynamic programming Dynamic programming is both a mathematical optimization method and a computer programming method. The method was developed by Richard Bellman in the 1950s and has found applications in numerous fields, from aerospace engineering to economics. ...
. * There is a
fully polynomial-time approximation scheme A fully polynomial-time approximation scheme (FPTAS) is an algorithm for finding approximate solutions to function problems, especially optimization problems. An FPTAS takes as input an instance of the problem and a parameter ε > 0. It ...
, which uses the pseudo-polynomial time algorithm as a subroutine, described below. * Many cases that arise in practice, and "random instances" from some distributions, can nonetheless be solved exactly. There is a link between the "decision" and "optimization" problems in that if there exists a polynomial algorithm that solves the "decision" problem, then one can find the maximum value for the optimization problem in polynomial time by applying this algorithm iteratively while increasing the value of k. On the other hand, if an algorithm finds the optimal value of the optimization problem in polynomial time, then the decision problem can be solved in polynomial time by comparing the value of the solution output by this algorithm with the value of k. Thus, both versions of the problem are of similar difficulty. One theme in research literature is to identify what the "hard" instances of the knapsack problem look like,Pisinger, D. 2003
Where are the hard knapsack problems?
Technical Report 2003/08, Department of Computer Science, University of Copenhagen, Copenhagen, Denmark.
or viewed another way, to identify what properties of instances in practice might make them more amenable than their worst-case NP-complete behaviour suggests. The goal in finding these "hard" instances is for their use in
public key cryptography Public-key cryptography, or asymmetric cryptography, is the field of cryptographic systems that use pairs of related keys. Each key pair consists of a public key and a corresponding private key. Key pairs are generated with cryptographic al ...
systems, such as the Merkle-Hellman knapsack cryptosystem. Furthermore, notable is the fact that the hardness of the knapsack problem depends on the form of the input. If the weights and profits are given as integers, it is
weakly NP-complete In computational complexity, an NP-complete (or NP-hard) problem is weakly NP-complete (or weakly NP-hard) if there is an algorithm for the problem whose running time is polynomial in the dimension of the problem and the magnitudes of the data in ...
, while it is
strongly NP-complete In computational complexity, strong NP-completeness is a property of computational problems that is a special case of NP-completeness. A general computational problem may have numerical parameters. For example, the input to the bin packing problem ...
if the weights and profits are given as rational numbers. However, in the case of rational weights and profits it still admits a
fully polynomial-time approximation scheme A fully polynomial-time approximation scheme (FPTAS) is an algorithm for finding approximate solutions to function problems, especially optimization problems. An FPTAS takes as input an instance of the problem and a parameter ε > 0. It ...
.


Solving

Several algorithms are available to solve knapsack problems, based on the dynamic programming approach, the
branch and bound Branch and bound (BB, B&B, or BnB) is an algorithm design paradigm for discrete and combinatorial optimization problems, as well as mathematical optimization. A branch-and-bound algorithm consists of a systematic enumeration of candidate solut ...
approachS. Martello, P. Toth, Knapsack Problems: Algorithms and Computer Implementations, John Wiley and Sons, 1990 or hybridizations of both approaches.S. Martello, D. Pisinger, P. Toth
Dynamic programming and strong bounds for the 0-1 knapsack problem
''Manag. Sci.'', 45:414–424, 1999.


Dynamic programming in-advance algorithm

The unbounded knapsack problem (UKP) places no restriction on the number of copies of each kind of item. Besides, here we assume that x_i > 0 : m ' \max \left( \sum_^n v_i x_i \right) : subject to \sum_^n w_i x_i \leq w' and x_i > 0 Observe that m /math> has the following properties: 1. m 0\,\! (the sum of zero items, i.e., the summation of the empty set). 2. m \max (v_1+m -w_1v_2+m -w_2...,v_n+m -w_n , w_i \leq w, where v_i is the value of the i-th kind of item. The second property needs to be explained in detail. During the process of the running of this method, how do we get the weight w? There are only i ways and the previous weights are w-w_1, w-w_2,..., w-w_i where there are total i kinds of different item (by saying different, we mean that the weight and the value are not completely the same). If we know each value of these i items and the related maximum value previously, we just compare them to each other and get the maximum value ultimately and we are done. Here the maximum of the empty set is taken to be zero. Tabulating the results from m /math> up through m /math> gives the solution. Since the calculation of each m /math> involves examining at most n items, and there are at most W values of m /math> to calculate, the running time of the dynamic programming solution is O(nW). Dividing w_1,\,w_2,\,\ldots,\,w_n,\,W by their greatest common divisor is a way to improve the running time. Even if P≠NP, the O(nW) complexity does not contradict the fact that the knapsack problem is NP-complete, since W, unlike n, is not polynomial in the length of the input to the problem. The length of the W input to the problem is proportional to the number of bits in W, \log W, not to W itself. However, since this runtime is pseudopolynomial, this makes the (decision version of the) knapsack problem a weakly NP-complete problem.


0-1 knapsack problem

A similar dynamic programming solution for the 0-1 knapsack problem also runs in pseudo-polynomial time. Assume w_1,\,w_2,\,\ldots,\,w_n,\, W are strictly positive integers. Define m ,w/math> to be the maximum value that can be attained with weight less than or equal to w using items up to i (first i items). We can define m ,w/math> recursively as follows: (Definition A) * m ,\,w0 * m ,\,wm -1,\,w/math> if w_i > w\,\! (the new item is more than the current weight limit) *m ,\,w\max(m -1,\,w\,m -1,w-w_iv_i) if w_i \leqslant w. The solution can then be found by calculating m ,W/math>. To do this efficiently, we can use a table to store previous computations. The following is pseudocode for the dynamic program: // Input: // Values (stored in array v) // Weights (stored in array w) // Number of distinct items (n) // Knapsack capacity (W) // NOTE: The array "v" and array "w" are assumed to store all relevant values starting at index 1. array m ..n, 0..W for j from 0 to W do: m
, j The comma is a punctuation mark that appears in several variants in different languages. It has the same shape as an apostrophe or single closing quotation mark () in many typefaces, but it differs from them in being placed on the baseline ...
:= 0 for i from 1 to n do: m , 0:= 0 for i from 1 to n do: for j from 0 to W do: if w > j then: m
, j The comma is a punctuation mark that appears in several variants in different languages. It has the same shape as an apostrophe or single closing quotation mark () in many typefaces, but it differs from them in being placed on the baseline ...
:= m -1, j else: m
, j The comma is a punctuation mark that appears in several variants in different languages. It has the same shape as an apostrophe or single closing quotation mark () in many typefaces, but it differs from them in being placed on the baseline ...
:= max(m -1, j m -1,_j-w[i_+_v[i.html" ;"title=".html" ;"title="-1, j-w[i">-1, j-w[i + v[i">.html" ;"title="-1, j-w[i">-1, j-w[i + v[i This solution will therefore run in O(nW) time and O(nW) space. (If we only need the value m[n,W], we can modify the code so that the amount of memory required is O(W) which stores the recent two lines of the array "m".) However, if we take it a step or two further, we should know that the method will run in the time between O(nW) and O(2^n). From Definition A, we know that there is no need to compute all the weights when the number of items and the items themselves that we chose are fixed. That is to say, the program above computes more than necessary because the weight changes from 0 to W often. From this perspective, we can program this method so that it runs recursively. // Input: // Values (stored in array v) // Weights (stored in array w) // Number of distinct items (n) // Knapsack capacity (W) // NOTE: The array "v" and array "w" are assumed to store all relevant values starting at index 1. Define value
, W The comma is a punctuation mark that appears in several variants in different languages. It has the same shape as an apostrophe or single closing quotation mark () in many typefaces, but it differs from them in being placed on the baseline o ...
Initialize all value
, j The comma is a punctuation mark that appears in several variants in different languages. It has the same shape as an apostrophe or single closing quotation mark () in many typefaces, but it differs from them in being placed on the baseline ...
= -1 Define m:=(i,j) // Define function m so that it represents the maximum value we can get under the condition: use first i items, total weight limit is j Run m(n, W)
For example, there are 10 different items and the weight limit is 67. So, :\begin &w 1 23 ,w 2 26,w 3 20,w 4 18,w 5 32,w 6 27,w 7 29,w 8 26,w 9 30,w 10 27 \\ &v 1505 ,v 2352,v 3458,v 4220,v 5354,v 6414,v 7498,v 8545,v 9473,v 10543 \\ \end If you use above method to compute for m(10,67), you will get this, excluding calls that produce m(i,j) = 0: :\begin &m(10, 67) = 1270\\ &m(9, 67) = 1270, m(9, 40) = 678\\ &m(8, 67) = 1270, m(8, 40) = 678, m(8, 37) = 545\\ &m(7, 67) = 1183, m(7, 41) = 725, m(7, 40) = 678, m(7, 37) = 505\\ &m(6, 67) = 1183, m(6, 41) = 725, m(6, 40) = 678, m(6, 38) = 678, m(6, 37) = 505\\ &m(5, 67) = 1183, m(5, 41) = 725, m(5, 40) = 678, m(5, 38) = 678, m(5, 37) = 505\\ &m(4, 67) = 1183, m(4, 41) = 725, m(4, 40) = 678, m(4, 38) = 678, m(4, 37) = 505, m(4, 35) = 505\\ &m(3, 67) = 963, m(3, 49) = 963, m(3, 41) = 505, m(3, 40) = 505, m(3, 38) = 505, m(3, 37) = 505, m(3, 35) = 505, m(3, 23) = 505, m(3, 22) = 458, m(3, 20) = 458\\ &m(2, 67) = 857, m(2, 49) = 857, m(2, 47) = 505, m(2, 41) = 505, m(2, 40) = 505, m(2, 38) = 505, m(2, 37) = 505, m(2, 35) = 505, m(2, 29) = 505, m(2, 23) = 505\\ &m(1, 67) = 505, m(1, 49) = 505, m(1, 47) = 505, m(1, 41) = 505, m(1, 40) = 505, m(1, 38) = 505, m(1, 37) = 505, m(1, 35) = 505, m(1, 29) = 505, m(1, 23) = 505\\ \end Besides, we can break the recursion and convert it into a tree. Then we can cut some leaves and use parallel computing to expedite the running of this method. To find the actual subset of items, rather than just their total value, we can run this after running the function above: /** * Returns the indices of the items of the optimal knapsack. * i: We can include items 1 through i in the knapsack * j: maximum weight of the knapsack */ function knapsack(i: int, j: int): Set knapsack(n, W)


Meet-in-the-middle

Another algorithm for 0-1 knapsack, discovered in 1974 and sometimes called "meet-in-the-middle" due to parallels to a similarly named algorithm in cryptography, is exponential in the number of different items but may be preferable to the DP algorithm when W is large compared to ''n''. In particular, if the w_i are nonnegative but not integers, we could still use the dynamic programming algorithm by scaling and rounding (i.e. using
fixed-point arithmetic In computing, fixed-point is a method of representing fractional (non-integer) numbers by storing a fixed number of digits of their fractional part. Dollar amounts, for example, are often stored with exactly two fractional digits, represent ...
), but if the problem requires d fractional digits of precision to arrive at the correct answer, W will need to be scaled by 10^d, and the DP algorithm will require O(W10^d) space and O(nW10^d) time. algorithm Meet-in-the-middle is input: A set of items with weights and values. output: The greatest combined value of a subset. partition the set into two sets ''A'' and ''B'' of approximately equal size compute the weights and values of all subsets of each set for each subset of ''A'' do find the subset of ''B'' of greatest value such that the combined weight is less than ''W'' keep track of the greatest combined value seen so far The algorithm takes O(2^) space, and efficient implementations of step 3 (for instance, sorting the subsets of B by weight, discarding subsets of B which weigh more than other subsets of B of greater or equal value, and using binary search to find the best match) result in a runtime of O(n2^). As with the meet in the middle attack in cryptography, this improves on the O(n2^n) runtime of a naive brute force approach (examining all subsets of \), at the cost of using exponential rather than constant space (see also
baby-step giant-step In group theory, a branch of mathematics, the baby-step giant-step is a meet-in-the-middle algorithm for computing the discrete logarithm or order of an element in a finite abelian group by Daniel Shanks. The discrete log problem is of fundamental ...
).


Approximation algorithms

As for most NP-complete problems, it may be enough to find workable solutions even if they are not optimal. Preferably, however, the approximation comes with a guarantee of the difference between the value of the solution found and the value of the optimal solution. As with many useful but computationally complex algorithms, there has been substantial research on creating and analyzing algorithms that approximate a solution. The knapsack problem, though NP-Hard, is one of a collection of algorithms that can still be approximated to any specified degree. This means that the problem has a polynomial time approximation scheme. To be exact, the knapsack problem has a fully polynomial time approximation scheme (FPTAS).Vazirani, Vijay. Approximation Algorithms. Springer-Verlag Berlin Heidelberg, 2003.


Greedy approximation algorithm

George Dantzig proposed a greedy
approximation algorithm In computer science and operations research, approximation algorithms are efficient algorithms that find approximate solutions to optimization problems (in particular NP-hard problems) with provable guarantees on the distance of the returned sol ...
to solve the unbounded knapsack problem. His version sorts the items in decreasing order of value per unit of weight, v_1/w_1\ge\cdots\ge v_n/w_n. It then proceeds to insert them into the sack, starting with as many copies as possible of the first kind of item until there is no longer space in the sack for more. Provided that there is an unlimited supply of each kind of item, if m is the maximum value of items that fit into the sack, then the greedy algorithm is guaranteed to achieve at least a value of m/2. For the bounded problem, where the supply of each kind of item is limited, the above algorithm may be far from optimal. Nevertheless, a simple modification allows us to solve this case: Assume for simplicity that all items individually fit in the sack (w_i \le W for all i). Construct a solution S_1 by packing items greedily as long as possible, i.e. S_1=\left\ where k=\textstyle\max_\textstyle\sum_^ w_i\le W. Furthermore, construct a second solution S_2=\left\ containing the first item that did not fit. Since S_1\cup S_2 provides an upper bound for the LP relaxation of the problem, one of the sets must have value at least m/2; we thus return whichever of S_1 and S_2 has better value to obtain a 1/2-approximation. It can be shown that the average performance converges to the optimal solution in distribution at the error rate n^


Fully polynomial time approximation scheme

The fully polynomial time approximation scheme (FPTAS) for the knapsack problem takes advantage of the fact that the reason the problem has no known polynomial time solutions is because the profits associated with the items are not restricted. If one rounds off some of the least significant digits of the profit values then they will be bounded by a polynomial and 1/ε where ε is a bound on the correctness of the solution. This restriction then means that an algorithm can find a solution in polynomial time that is correct within a factor of (1-ε) of the optimal solution. algorithm FPTAS is input: ε ∈ (0,1] a list A of n items, specified by their values, v_i, and weights output: S' the FPTAS solution P := max \ // the highest item value K := ε \frac for i from 1 to n do v'_i := \left\lfloor \frac \right\rfloor end for return the solution, S', using the v'_i values in the dynamic program outlined above Theorem: The set S' computed by the algorithm above satisfies \mathrm(S') \geq (1-\varepsilon) \cdot \mathrm(S^*), where S^* is an optimal solution.


Dominance relations

Solving the unbounded knapsack problem can be made easier by throwing away items which will never be needed. For a given item i, suppose we could find a set of items J such that their total weight is less than the weight of i, and their total value is greater than the value of i. Then i cannot appear in the optimal solution, because we could always improve any potential solution containing i by replacing i with the set J. Therefore, we can disregard the i-th item altogether. In such cases, J is said to dominate i. (Note that this does not apply to bounded knapsack problems, since we may have already used up the items in J.) Finding dominance relations allows us to significantly reduce the size of the search space. There are several different types of dominance relations, which all satisfy an inequality of the form: \qquad \sum_ w_j\,x_j \ \le \alpha\,w_i, and \sum_ v_j\,x_j \ \ge \alpha\,v_i\, for some x \in Z _+^n where \alpha\in Z_+ \,,J\subsetneq N and i\not\in J. The vector x denotes the number of copies of each member of J. ;Collective dominance: The i-th item is collectively dominated by J, written as i\ll J, if the total weight of some combination of items in J is less than ''wi'' and their total value is greater than ''vi''. Formally, \sum_ w_j\,x_j \ \le w_i and \sum_ v_j\,x_j \ \ge v_i for some x \in Z _+^n , i.e. \alpha=1. Verifying this dominance is computationally hard, so it can only be used with a dynamic programming approach. In fact, this is equivalent to solving a smaller knapsack decision problem where V = v_i, W = w_i, and the items are restricted to J. ;Threshold dominance: The i-th item is threshold dominated by J, written as i\prec\prec J, if some number of copies of i are dominated by J. Formally, \sum_ w_j\,x_j \ \le \alpha\,w_i, and \sum_ v_j\,x_j \ \ge \alpha\,v_i\, for some x \in Z _+^n and \alpha\geq 1. This is a generalization of collective dominance, first introduced in and used in the EDUK algorithm. The smallest such \alpha defines the threshold of the item i, written t_i =(\alpha-1)w_i. In this case, the optimal solution could contain at most \alpha-1 copies of i. ;Multiple dominance: The i-th item is multiply dominated by a single item j, written as i\ll_ j, if i is dominated by some number of copies of j. Formally, w_j\,x_j \ \le w_i, and v_j\,x_j \ \ge v_i for some x_j \in Z _+ i.e. J=\, \alpha=1, x_j=\lfloor \frac\rfloor. This dominance could be efficiently used during preprocessing because it can be detected relatively easily. ;Modular dominance: Let b be the ''best item'', i.e. \frac\ge\frac\, for all i. This is the item with the greatest density of value. The i-th item is modularly dominated by a single item j, written as i\ll_\equiv j, if i is dominated by j plus several copies of b. Formally, w_j+tw_b \le w_i, and v_j +tv_b \ge v_i i.e. J=\, \alpha=1, x_b=t, x_j=1.


Variations

There are many variations of the knapsack problem that have arisen from the vast number of applications of the basic problem. The main variations occur by changing the number of some problem parameter such as the number of items, number of objectives, or even the number of knapsacks.


Multi-objective knapsack problem

This variation changes the goal of the individual filling the knapsack. Instead of one objective, such as maximizing the monetary profit, the objective could have several dimensions. For example, there could be environmental or social concerns as well as economic goals. Problems frequently addressed include portfolio and transportation logistics optimizations. As an example, suppose you ran a cruise ship. You have to decide how many famous comedians to hire. This boat can handle no more than one ton of passengers and the entertainers must weigh less than 1000 lbs. Each comedian has a weight, brings in business based on their popularity and asks for a specific salary. In this example, you have multiple objectives. You want, of course, to maximize the popularity of your entertainers while minimizing their salaries. Also, you want to have as many entertainers as possible.


Multi-dimensional knapsack problem

In this variation, the weight of knapsack item i is given by a D-dimensional vector \overline=(w_,\ldots,w_) and the knapsack has a D-dimensional capacity vector (W_1,\ldots,W_D). The target is to maximize the sum of the values of the items in the knapsack so that the sum of weights in each dimension d does not exceed W_d. Multi-dimensional knapsack is computationally harder than knapsack; even for D=2, the problem does not have EPTAS unless P=NP. However, the algorithm inCohen, R. and Grebla, G. 2014
"Multi-Dimensional OFDMA Scheduling in a Wireless Network with Relay Nodes"
in ''Proc. IEEE INFOCOM’14'', 2427–2435.
is shown to solve sparse instances efficiently. An instance of multi-dimensional knapsack is sparse if there is a set J=\ for m such that for every knapsack item i, \exists z>m such that \forall j\in J\cup \,\ w_\geq 0 and \forall y\notin J\cup\, w_=0. Such instances occur, for example, when scheduling packets in a wireless network with relay nodes. The algorithm from also solves sparse instances of the multiple choice variant, multiple-choice multi-dimensional knapsack. The IHS (Increasing Height Shelf) algorithm is optimal for 2D knapsack (packing squares into a two-dimensional unit size square): when there are at most five square in an optimal packing.


Multiple knapsack problem

This variation is similar to the Bin Packing Problem. It differs from the Bin Packing Problem in that a subset of items can be selected, whereas, in the Bin Packing Problem, all items have to be packed to certain bins. The concept is that there are multiple knapsacks. This may seem like a trivial change, but it is not equivalent to adding to the capacity of the initial knapsack. This variation is used in many loading and scheduling problems in Operations Research and has a Polynomial-time approximation scheme.


Quadratic knapsack problem

The quadratic knapsack problem maximizes a quadratic objective function subject to binary and linear capacity constraints. The problem was introduced by Gallo, Hammer, and Simeone in 1980, however the first treatment of the problem dates back to Witzgall in 1975.


Subset-sum problem

The subset sum problem is a special case of the decision and 0-1 problems where each kind of item, the weight equals the value: w_i=v_i. In the field of
cryptography Cryptography, or cryptology (from grc, , translit=kryptós "hidden, secret"; and ''graphein'', "to write", or '' -logia'', "study", respectively), is the practice and study of techniques for secure communication in the presence of adv ...
, the term ''knapsack problem'' is often used to refer specifically to the subset sum problem and is commonly known as one of Karp's 21 NP-complete problems. The generalization of subset sum problem is called multiple subset-sum problem, in which multiple bins exist with the same capacity. It has been shown that the generalization does not have an
FPTAS A fully polynomial-time approximation scheme (FPTAS) is an algorithm for finding approximate solutions to function problems, especially optimization problems. An FPTAS takes as input an instance of the problem and a parameter ε > 0. It ...
.


Geometric knapsack problem

In the geometric knapsack problem, there is a set of rectangles with different values, and a rectangular knapsack. The goal is to pack the largest possible value into the knapsack.


See also

* Bin packing problem *
Change-making problem The change-making problem addresses the question of finding the minimum number of coins (of certain denominations) that add up to a given amount of money. It is a special case of the integer knapsack problem, and has applications wider than just ...
* Combinatorial auction * Combinatorial optimization * Continuous knapsack problem *
Cutting stock problem In operations research, the cutting-stock problem is the problem of cutting standard-sized pieces of stock material, such as paper rolls or sheet metal, into pieces of specified sizes while minimizing material wasted. It is an optimization problem ...
*
List of knapsack problems 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, w ...
* Packing problem


Notes


References

* A6: MP9, pg.247. * *


External links


Free download of the book "Knapsack problems: Algorithms and computer implementations", by Silvano Martello and Paolo Toth

Lecture slides on the knapsack problem

PYAsUKP: Yet Another solver for the Unbounded Knapsack Problem
with code taking advantage of the dominance relations in an hybrid algorithm, benchmarks and downloadable copies of some papers.
Home page of David Pisinger
with downloadable copies of some papers on the publication list (including "Where are the hard knapsack problems?")
Knapsack Problem solutions in many languages
at
Rosetta Code Rosetta Code is a wiki-based programming website with implementations of common algorithms and solutions to various programming problems in many different programming languages. It is named for the Rosetta Stone, which has the same text inscri ...

Dynamic Programming algorithm to 0/1 Knapsack problem



Solving 0-1-KNAPSACK with Genetic Algorithms in Ruby



Optimizing Three-Dimensional Bin Packing

Knapsack Integer Programming Solution in Python
Gekko (optimization software) {{DEFAULTSORT:Knapsack Problem Cryptography Packing problems NP-complete problems Dynamic programming Combinatorial optimization Weakly NP-complete problems Pseudo-polynomial time algorithms