This is an old revision of the document!


6.4 Subset Sums and Knapsacks: Adding a Variable


The Problem


Given n objects and a “knapsack”

Item i weighs wi > 0 kilograms and has value vi > 0

Alternative: jobs require w i time

Knapsack has capacity of W kilograms
Alternative: W is time interval that resource is available

Goal: Fill in the knapsack so as to maximize the total value.

Designing the Algorithm


False Start:

OPT(i) = max profit subset of items 1,…, i
Case 1: OPT does not select item i:
OPT selects best of { 1, 2, …, i-1 }

Case 2: OPT selects item i

Accepting item i does not immediately imply that we will have to reject other items: It implies that there are no known conflicts

Without knowing what other items were selected before i, we don't even know if we have enough room for i


Better solution

courses/cs211/winter2012/journals/jeanpaul/chaptersixsectioniv.1332903258.txt.gz · Last modified: 2012/03/28 02:54 by mugabej
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0