BackPack(KnapSack) Dynamic Programming Problems

This blog talks about using dynamic programming to solve the famous 0/1 back pack (knapsack) and its variant problems.

 

BackPack I

Given n items with size Ai, an integer m denotes the size of a backpack. How full you can fill this backpack?

You can not divide any item into small pieces.

Example

If we have 4 items with size [2, 3, 5, 7], the backpack size is 11, we can select [2, 3, 5], so that the max size we can fill this backpack is 10. If the backpack size is 12. we can select [2, 3, 7] so that we can fulfill the backpack.

You function should return the max size we can fill in the given backpack.

Challenge 

O(n x m) time and O(m) memory.

O(n x m) memory is also acceptable if you do not know how to optimize memory.

 

State: T[i][j]: the max size we can get out of the first i items when the backpack size is j. 

Function: T[i][j] = Math.max(T[i - 1][j], T[i - 1][j - A[i - 1]] + A[i - 1]), if j >= A[i - 1];

               T[i][j] = T[i - 1][j], if j < A[i - 1]. 

Initialization: T[i][0] = T[0][j] = 0

Answer: T[A.length][m]

 

O(n * m) time, O(n * m) memory

 1 public class Solution {
 2     public int backPack(int m, int[] A) {
 3         if(A == null || A.length == 0){
 4             return 0;
 5         }
 6         int[][] T = new int[A.length + 1][m + 1];
 7         for(int i = 0; i <= A.length; i++){
 8             T[i][0] = 0;
 9         }
10         for(int j = 0; j <= m; j++){
11             T[0][j] = 0;
12         }
13         for(int i = 1; i <= A.length; i++){
14             for(int j = 1; j <= m; j++){
15                 if(j >= A[i - 1]){
16                     T[i][j] = Math.max(T[i - 1][j], T[i - 1][j - A[i - 1]] + A[i - 1]);                    
17                 }
18                 else{
19                     T[i][j] = T[i - 1][j];
20                 }
21             }
22         }
23         return T[A.length][m];
24     }
25 }

 

O(n * m) time, O(m) memory with rolling array

 1 public class Solution {
 2     public int backPack(int m, int[] A) {
 3         if(A == null || A.length == 0){
 4             return 0;
 5         }
 6         int[][] T = new int[2][m + 1];
 7         for(int j = 0; j <= m; j++){
 8             T[0][j] = 0; 
 9         }
10         for(int i = 1; i <= A.length; i++){
11             for(int j = 1; j <= m; j++){
12                 if(j >= A[i - 1]){
13                     T[i % 2][j] = Math.max(T[(i - 1) % 2][j], T[(i - 1) % 2][j - A[i - 1]] + A[i - 1]);                    
14                 }
15                 else{
16                     T[i % 2][j] = T[(i - 1) % 2][j];
17                 }
18             }
19         }
20         return T[A.length % 2][m];
21     }
22 }

 

Follow up question: If you are allowed to divide any item into small pieces, how does this change affect your algorithm?

A: In this case, we can simply apply a greedy algorithm described in the following.

1. sort all the items in descending order by their value to weight ratio.

2. starting from the item that has the highest ratio, fill the backpack until it is full. If the last item overflows the backpack,

split into a right proportion so that it fits the remaining empty space. 

 

If the toal weights of all items is >=  the size of backpack, it is guaranteed that the backpack is always completely filled.

 

 

BackPack II

Given n items with size Ai and value Vi, and a backpack with size m. What's the maximum value can you put into the backpack?

You cannot divide item into small pieces and the total size of items you choose should smaller or equal to m.

Example

Given 4 items with size [2, 3, 5, 7] and value [1, 5, 2, 4], and a backpack with size 10. The maximum value is 9.

Challenge 

O(n x m) memory is acceptable, can you do it in O(m) memory?

 

BackPack II is almost identical with BackPack I. The only difference is that in I, we try to maximize the total size, but in II, 

we try to maximize the total value.

 

State: T[i][j]: the max value we can get out of the first i items when the backpack size is j. 

Function: T[i][j] = Math.max(T[i - 1][j], T[i - 1][j - A[i - 1]] + V[i - 1]), if j >= A[i - 1];

               T[i][j] = T[i - 1][j], if j < A[i - 1]. 

Initialization: T[i][0] = T[0][j] = 0

Answer: T[A.length][m]

 

O(n * m) time, O(n * m) memory

 1 public class Solution {
 2     public int backPackII(int m, int[] A, int V[]) {
 3         int[][] T = new int[A.length + 1][m + 1];
 4         for(int i = 0; i <= A.length; i++){
 5             T[i][0] = 0;
 6         }
 7         for(int j = 0; j <= m; j++){
 8             T[0][j] = 0;
 9         }
10         for(int i = 1; i <= A.length; i++){
11             for(int j = 1; j <= m; j++){
12                 if(j >= A[i - 1]){
13                     T[i][j] = Math.max(T[i - 1][j], T[i - 1][j - A[i - 1]] + V[i - 1]);                    
14                 }
15                 else{
16                     T[i][j] = T[i - 1][j];
17                 }
18             }
19         }
20         return T[A.length][m];
21     }
22 }

 

O(n * m) time, O(m) memory with rolling array 

 1 public class Solution {
 2     public int backPackII(int m, int[] A, int V[]) {
 3         int[][] T = new int[2][m + 1];
 4         for(int j = 0; j <= m; j++){
 5             T[0][j] = 0;
 6         }
 7         for(int i = 1; i <= A.length; i++){
 8             for(int j = 1; j <= m; j++){
 9                 if(j >= A[i - 1]){
10                     T[i % 2][j] = Math.max(T[(i - 1) % 2][j], T[(i - 1) % 2][j - A[i - 1]] + V[i - 1]);                    
11                 }
12                 else{
13                     T[i % 2][j] = T[(i - 1) % 2][j];
14                 }
15             }
16         }
17         return T[A.length % 2][m];
18     }
19 }

 

BackPack III

Given n kind of items with size Ai and value Vi( each item has an infinite number available) and a backpack with size m. What's the maximum value can you put into the backpack?

You cannot divide item into small pieces and the total size of items you choose should smaller or equal to m.

Example

Given 4 items with size [2, 3, 5, 7] and value [1, 5, 2, 4], and a backpack with size 10. The maximum value is 15.

 

In II, we only have 1 of each item; In III, we can have infinite number of each item. So after we pick the ith item, 

we should still consider picking the same ith item again as long as the remaining weight is >= A[i - 1]. In II, once

we picked the ith item, we should only consider the max value of the first (i - 1) items with the remaining weight

j - A[i - 1].

 

State: T[i][j]: the max value we can, when we are given the first i items to choose from and the backpack size is j. 

Function: T[i][j] = Math.max(T[i - 1][j], T[i][j - A[i - 1]] + V[i - 1]), if j >= A[i - 1];

               T[i][j] = T[i - 1][j], if j < A[i - 1]. 

Initialization: T[i][0] = T[0][j] = 0

Answer: T[A.length][m]

 

O(n * m) time, O(n * m) memory

 1 public class Solution {
 2     public int backPackIII(int[] A, int[] V, int m) {
 3         int[][] T = new int[A.length + 1][m + 1];
 4         for(int i = 0; i <= A.length; i++){
 5             T[i][0] = 0;
 6         }
 7         for(int j = 0; j <= m; j++){
 8             T[0][j] = 0;
 9         }
10         for(int i = 1; i <= A.length; i++){
11             for(int j = 1; j <= m; j++){
12                 if(j >= A[i - 1]){
13                     T[i][j] = Math.max(T[i - 1][j], T[i][j - A[i - 1]] + V[i - 1]);
14                 }
15                 else{
16                     T[i][j] = T[i - 1][j];
17                 }
18             }
19         }
20         return T[A.length][m];
21     }
22 }

 

O(n * m) time, O(m) memory

 1 public class Solution {
 2     public int backPackIII(int[] A, int[] V, int m) {
 3         int[][] T = new int[2][m + 1];
 4         for(int j = 0; j <= m; j++){
 5             T[0][j] = 0;
 6         }
 7         for(int i = 1; i <= A.length; i++){
 8             for(int j = 1; j <= m; j++){
 9                 if(j >= A[i - 1]){
10                     T[i % 2][j] = Math.max(T[(i - 1) % 2][j], T[i % 2][j - A[i - 1]] + V[i - 1]);
11                 }
12                 else{
13                     T[i % 2][j] = T[(i - 1) % 2][j];
14                 }
15             }
16         }
17         return T[A.length % 2][m];
18     }
19 }

 

O(n * m) time, O(m) memory

State: T[j]: The max value we can get out of all items when the backpack size is j.

Function: T[j] = Math.max(T[j - A[i]] + V[i], T[j]), for j >= A[i];  

When j >= A[i], it means we can pick 1 more A[i], which may yield a bigger value;

When j < A[i],  we can't pick A[i], no need to do any update check.

Initialization: T[0] = 0

Answer: T[m]

 

This solution is essentially the same with the solution using rolling array. 

 1 public class Solution {
 2     public int backPackIII(int[] A, int[] V, int m) {
 3         int[] T = new int[m + 1];
 4         T[0] = 0;
 5         for(int i = 0; i < A.length; i++){
 6             for(int j = A[i]; j <= m; j++){
 7                 T[j] = Math.max(T[j - A[i]] + V[i], T[j]);
 8             }
 9         }
10         return T[m];
11     }
12 }

 

BackPack IV

Given n items with size nums[i]. nums is an integer array with all positive numbers, no duplicates. An integer target denotes the size of a backpack. Find the number of all possible ways of filling the backpack.

Each item may be chosen unlimited number of times

Example

Given candidate items [2,3,6,7] and target 7,

A solution set is: 
[7]
[2, 2, 3]

return 2

 

State: T[i][j]: the number of all possible ways of filling size j with the first i items.

Function: T[i][j] += T[i - 1][j - k * nums[i - 1]]; for all k that satisfies k * nums[i - 1] <= j

This function basically says for the ith item,  we have have k = 0, 1, or 2...... of it; The stop condition is when k ith items' size is bigger than j.

Initialization: 

T[i][0] = 1; i = 0, 1, ...... nums.length; //This is different with I, II, III; When we need to fill a backpack of size 0, we do have one way of doing it, which is to do nothing.

T[0][j] = 0; j = 1, 2, ....... target;

Answer:

T[nums.length][target]

 

 1 public class Solution {
 2     public int backPackIV(int[] nums, int target) {
 3         if(nums == null){
 4             return -1;
 5         }
 6         int[][] T = new int[nums.length + 1][target + 1];
 7         for(int i = 0; i <= nums.length; i++){
 8             T[i][0] = 1;
 9         }
10         for(int j = 1; j <= target; j++){
11             T[0][j] = 0;
12         }
13         for(int i = 1; i <= nums.length; i++){
14             for(int j = 1; j <= target; j++){
15                 int k = 0; 
16                 while(k * nums[i - 1] <= j){
17                     T[i][j] += T[i - 1][j - k * nums[i - 1]];
18                     k++;
19                 }
20             }    
21         }
22         return T[nums.length][target];
23     }
24 }

 

Optimization to O(n * m) time,  O(m) memory

State: T[j]: the number of all possible ways of filling size j with all items.

Function: T[j] += T[j - nums[i]], if nums[i] <= j; i = 0, 1, 2, ..... nums.length - 1;

Initialization: T[0] = 1; The only way of filling size 0 with all items is to do nothing.

Answer: T[target]

 

 1 public class Solution {
 2     public int backPackIV(int[] nums, int target) {
 3         if(nums == null){
 4             return -1;
 5         }
 6         int[] T = new int[target + 1];
 7         T[0] = 1;
 8         for(int i = 0; i < nums.length; i++){
 9             for(int j = 1; j <= target; j++){
10                 if(nums[i] <= j){
11                     T[j] += T[j - nums[i]];
12                 }
13             }
14         }
15         return T[target];
16     }
17 }

 

 

BackPack VI (Same with Combination Sum IV)

Given an integer array nums with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.

A number in the array can be used multiple times in the combination. 
Different orders are counted as different combinations.

Example

Given nums = [1, 2, 4], target = 4

The possible combination ways are:
[1, 1, 1, 1]
[1, 1, 2]
[1, 2, 1]
[2, 1, 1]
[2, 2]
[4]

return 6

 

The code of BackPack VI is almost identical with BackPack IV. The only difference is that the order of the two level

for-loops is different.

In BackPack I, II, III, IV, the reason that we can use a 1D array is because the 2D array solution only uses the

previous rows' information, so it is a pure space optimization.  BackPack VI is different, it is an 1D dynamic programming problem.  

For a given sum i, we search across the whole array to find all different combinations that sum up to i.

 

BackPack IV: element order does not matter;

BackPack VI: element order matters; [1, 1, 2] and [1, 2, 1] are two different combinations.

 

State: T[j]: the number of all possible ways of summing up to j with all items.

Function: T[j] += T[j - nums[i]], if nums[i] <= j; i = 0, 1, 2, ..... nums.length - 1;

Initialization: T[0] = 1; The only way of summing up to 0 with all items is to not pick any item.

Answer: T[target]

 1 public class Solution {
 2     public int backPackVI(int[] nums, int target) {
 3         if(nums == null || target <= 0){
 4             return -1;
 5         }
 6         int[] T = new int[target + 1];
 7         T[0] = 1;
 8         for(int j = 1; j <= target; j++){
 9             for(int i = 0; i < nums.length; i++){
10                 if(nums[i] <= j){
11                     T[j] += T[j - nums[i]];
12                 }
13             }
14         }
15         return T[target];
16     }
17 }

 

 

Knapsack With Weight Constraints 

The knapsack problem is a classical problem in combinatorial optimization: Given a set of n items, each with a weight wi and a value vi, determine the items to include in a collection so that the total weight is less than or equal to a given limit w and the total value is as large as possible.

Your goal is to solve a special case of the knapsack problem with additional constraint: the weight of each item is a power of 2.

Find the the set of items with the maximum total value so that their total weight is at most w.

 

Input

The first line contains two integers n and w (1 ≤ n ≤ 100, 0 ≤ w ≤ 10^9), the number of items and the maximal total weight of items in the knapsack.

Each of the next n lines contains two integers wi and vi (1 ≤ wi ≤ 2^30, 0 ≤ vi ≤ 10^6), the weight and the value of i-th item in the set. Each wi is a power of 2.

Output

The maximum total value of items in the selected set.

 

 

BackPack VI Related Problems

Combination Sum IV

Coin Change

转载于:https://www.cnblogs.com/lz87/p/6928227.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值