NIST

unbounded knapsack problem

(classic problem)

Definition: Given types of items of different values and volumes, find the most valuable set of items that fit in a knapsack of fixed volume. The number of items of each type is unbounded. This is an NP-hard combinatorial optimization problem.

Formal Definition: There is a knapsack of capacity c > 0 and N types of items. Each item of type t has value vt > 0 and weight wt > 0. Find the number nt > 0 of each type of item such that they fit, ∑t=1N ntwt ≤ c, and the total value, ∑t=1N ntvt, is maximized.

Also known as UKP.

See also knapsack problem, fractional knapsack problem.

Author: PEB

More information

Moshe Sniedovich's demonstration solutions using dynamic programming. formal definition and links to papers. Links to many papers.


Go to the Dictionary of Algorithms and Data Structures home page.

If you have suggestions, corrections, or comments, please get in touch with Paul Black.

Entry modified 25 July 2022.
HTML page formatted Mon Jul 25 09:56:30 2022.

Cite this as:
Paul E. Black, "unbounded knapsack problem", in Dictionary of Algorithms and Data Structures [online], Paul E. Black, ed. 25 July 2022. (accessed TODAY) Available from: https://www.nist.gov/dads/HTML/unboundedKnapsack.html