Knapsack Problem

seems like magic


Suppose you had a thief who broke into a house and saw a bunch of stuff to steal. Unfortunately, his thief knapsack can only hold 20 pounds, and each of the things to steal weighs some amount, and has some amount of monetary value. The thief wants to maximize his "bang for the buck" and thus gather as much value for the 20 pounds of knapsack he has.

Specifically, for weights[] and values[], the ith object the thief sees has a weight of weights[i] and a value of values[i]. What's the maximum value he can get with some maxWeight pounds?

So for example, if weights = [10, 5, 6] and values = [20, 5, 6], while maxWeight = 20, he can get a maximum value of 26 with a weight of 16 (he picks the 0th and 2nd items). How would you write a program to solve for many items, and a large maximum weight?


Home