Fractional Knapsack Problem
You have NN items that you want to put them into a knapsack of capacity WW. Item ii (1≤i≤N1≤i≤N) has weight wiwi and value vivi for the weight.
When you put some items into the knapsack, the following conditions must be satisfied:
- The total value of the items is as large as possible.
- The total weight of the selected items is at most WW.
- You can break some items if you want. If you put w′w′(0≤w′≤wi0≤w′≤wi) of item ii, its value becomes vi×w′wi.vi×w′wi.
Find the maximum total value of items in the knapsack.