Knapsack Algorithm
Knapsack Algorithm
Both types of algorithms are generally applied to optimization problems. Greedy algorithms tend to be faster. A greedy algorithm requires two preconditions:
Greedy choice property - making a greedy choice never precludes an optimal solution. Optimal substructure property an optimal solution to the problem contains optimal solutions to the subproblems.
If we have the second property then we can develop a DP algorithm. If we have neither property then we are in tough shape.
Knapsack Problem
We need to show that our first greedy choice g1 is included in some optimal solution O.
We need to show that O-{g1} is a solution to the problem left over after we make our first greedy choice.
Proof adapted from Vicki Choy's lecture notes at Viginia Tech: http://people.cs.vt.edu/~vchoi/4104/
Let O ={o , o , ... , o } I be the optimal solution of problem 1 2 j P. Let G ={g1 , g 2 , ... , g k } I be the greedy solution, where the items are ordered according to the greedy choices. We need to show that there exists some optimal solution O' that includes the choice g1. CASE 1: g1 is non-fractional.
if g1 is included in O, then we are done. if g1 is not included in O then we arbitrarily remove wg1 worth of stuff from O and replace it with g1 to produce O'. O' is a solution, and it is at least as good as O.
Proof Continued...
CASE 2: g1 is fractional. (this means K = f * wg1 where f is the fraction of g1 chosen. K is the weight limit.)
if O includes f * wg1 units of g1, then we are done. if O includes less than f of g1, then we remove f * wg1weight from O arbitrarily and replace it with f * wg1 units of g1 to construct O'.
We have shown that there is an optimal solution O' that selects g1. After g1 is chosen the weight limit becomes K'' = K wg1, the item set becomes I'' = I {g1}. Let P'' be the knapsack problem such that the weight limit is K'' and the item set is I''. We need to show that O'' = O' {g1} is an optimal solution to P''. Proof is by contradiction. Assume that O'' is not a solution to P''. Let Q be an optimal solution that is more valuable than O''. Let R =Q {g 1 } . The value of O' is equal to the value of O'' + g1. The value of R is greater than the value of O' = O'' + g1. Since O' was an optimal solution, this is a contradiction.
Let O be an optimal subset of all n items with weight limit K. We want to show that O contains a solution to all subinstances (by induction).
CASE 1: If O does not contain item n, then it is clearly an optimal subset of the first n-1 items. CASE 2: If O does contain item n, then O-{n} is a solution to the problem instance that includes the first n-1 items, and a weight limit K-wn.
Proof by contradiction, if O {n} is not a solution, then there must be some other subset Q with higher profit. By adding the nth item to Q, we have a subset of the first n items with higher profit than O, a contradiction.
First, why can't we have a greedy algorithm for this problem? Let's look back at the fractional proof. The reasoning on the previous slide leads us to the following recurrence for maximum profit P on the first i items with a weight limit of w:
CASE 1 CASE 2
P [ i ][ w ]=
max P [ i 1 ][ w ] , pi P [ i 1 ][ w wi ] if wi w P [ i 1 ][ w ] if wi w
Analysis
A Better Algorithm
The nth row requires at most one entry: P[n][W]. the n-1st row requires at most two entries P[n-1][W] and P[n-1][W-wn]. the n-2nd row requires at most four entries, two for each in the n-1st row. 1 + 2 + 22 + ... + 2n-1 = 2n -1
So regardless of weight limit, this algorithm gives a bound of 2 n . Incorporating the weight limit, we have O(min(nW, 2n)).