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

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.

解题思路:

一、申请一块辅助空间,dp[A.length][m+1],dp[i][j]的含义是当只有A[0..i]的物品,且背包容量为j的时候,背包最多能够装多少。

辅助数组dp[i][j]的值的取值方案:(看不懂先看下面案例流程)

1、          容量j < A[i],也就是说背包中不能装A[i]物品,于是dp[i][j] = dp[i-1][j];

2、          容量j > A[i],现在背包中能够装下i物品,于是我们有两种选择方案:

a)       装入A[i]物品,于是我装入i物品以后的背包的容量就只有j-A[i],于是剩下A[0…i-1]物品,以及j-A[i]的背包容量,于是dp[i][j]=A[i]+dp[i][j-A[i]];

b)       另一种方案就是我能装A[i],但是我不装进去。

于是dp[i][j] = max(dp[i][j], dp[i][j-A[i]] + A[i])

二、上面的没有看懂没有关系,我们举个例子分析流程以后再回来看。

1、假设A={2,3,4,5},背包size=10,首先申请dp空间,并且选择A[0]物品

0

1

2

3

4

5

6

7

8

9

10

2

0

0

2

2

2

2

2

2

2

2

2

3

4

5

现在假设就只有物品A[0],size = 2,当背包容量j为0和1的时候,背包容量j < A[0],当背包容量 j > A[0],但是此时只有A[0]物品,所以最多只能装入A[0].

2、假设现在能够选择A[0]和A[1]物品

0

1

2

3

4

5

6

7

8

9

10

2

0

0

2

2

2

2

2

2

2

2

2

3

0

0

2

3

3

5

5

5

5

5

5

4

5

当背包容量j为0、1、2的时候,不能j< [i] 所以dp[i][j] = dp[i-1][j],也就是不在背包中装入A[1]物品,那么现在背包中的只可能装入a[0],所以dp[1][j]的状态和dp[0][j]一样。当背包容量 j > A[1],于是dp[i][j]就有两种选择,装入A[1]个不装入A[1],然后选择两种情况下的最大值:dp[i][j] = max(dp[i][j], dp[i-A[i]] + A[i])

3、          假设现在能够选择A[0]、A[1]、A[2]物品

0

1

2

3

4

5

6

7

8

9

10

2

0

0

2

2

2

2

2

2

2

2

2

3

0

0

2

3

3

5

5

5

5

5

5

4

0

0

2

3

4

5

5

5

5

9

9

5

4、假设现在能够选择A[0]、A[1]、A[2]、A[3]物品

0

1

2

3

4

5

6

7

8

9

10

2

0

0

2

2

2

2

2

2

2

2

2

3

0

0

2

3

3

5

5

5

5

5

5

4

0

0

2

3

4

5

6

7

7

9

9

5

0

0

2

3

4

5

6

7

8

9

10

总之更具上面的dp[i][j]的值的决策方案走就能够得出最终结果。

public class Solution {
/**
* @param m: An integer m denotes the size of a backpack
* @param A: Given n items with size A[i]
* @return: The maximum size
*/
public int backPack(int m, int[] A) {
if (m <= 0 || A == null || A.length == 0) {
return 0;
}
int len = A.length;
int[][] dp = new int[len][m + 1];
for (int i = 0; i <= m; i++) {
if (i >= A[0])
dp[0][i] = A[0];
}
for (int i = 1; i < len; i++) {
for (int j = 0; j <= m; j++) {
if (j >= A[i]) {
dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - A[i]] + A[i]);
} else {
dp[i][j] = dp[i - 1][j];
}
}
}
return dp[len - 1][m];
}
public static void main(String[] args) {
int m = 10;
int[] arr = {3, 4, 8, 5};
int s = new Solution().backPack(m, arr);
System.out.println(s);
}
}

题目二

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?

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.

public class Solution {
/**
* @param m: An integer m denotes the size of a backpack
* @param A & V: Given n items with size A[i] and value V[i]
* @return: The maximum value
*/
public int backPackII(int m, int[] A, int V[]) { if (m <= 0 || A == null || A.length == 0 || V == null || V.length == 0) {
return 0;
} int len = A.length;
int[][] dp = new int[len][m + 1]; for (int i = 0; i <= m; i++) {
if (i >= A[0])
dp[0][i] = V[0];
} for (int i = 1; i < len; i++) {
for (int j = 0; j <= m; j++) {
if (j >= A[i]) {
dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - A[i]] + V[i]);
} else {
dp[i][j] = dp[i - 1][j];
}
}
} return dp[len - 1][m];
}
}

题目三:给定数组arr,arr中所有的值都为正且不重复,每个整数可以使用无数次,给定一个正整数aim,从arr中选择一个任意数字组合,求和为aim的数字组合有多少种。

Example:

arr={5,10,25,1}, aim=0

组成0园的方式有一种,就是都不用

arr={5,10,25,1},aim=15

组成15有6种方式:3个5,1个5+1个10,一个10+5个1,1个5+10个1,2个5+5个1,一个15,返回6

解题思路:申请辅助空间dp[i][j],dp[i][j]的值的含义为当只选择arr[0...i]的时候,有多少种方式可以组成j

dp[i][j]的值的决策方案:

1、当不选择arr[i],dp[i][j] = dp[i-1][j]

2、当选择arr[i],如果 j <arr[i] 就无法选择arr[i],dp[i][j] = dp[i-1][j],当j>arr[i],且选择了arr[i],dp[i][j] = dp[i-1][j]+dp[i][j-arr[i]]

public int backPackVI(int[] nums, int target) {
int len = nums.length; int[][] dp = new int[len][target + 1]; for (int i = 0; i < len; i++) {
dp[i][0] = 1;
}
for (int i = 1; nums[0] * i <= target; i++) { dp[0][nums[0] * i] = 1;
} for (int i = 1; i < len; i++) {
for (int j = 1; j <= target; j++) {
if (j >= nums[i])
dp[i][j] += dp[i - 1][j] + dp[i][j - nums[i]];
else
dp[i][j] = dp[i - 1][j];
}
}
return dp[len - 1][target];
}

该题可以进行空间压缩,参考代码如下:

public int backPackVI2(int[] nums, int target) {
// Write your code here
int[] dp = new int[target + 1];
dp[0] = 1; for (int i = 0; i < nums.length; ++i)
for (int j = 0; j <= target; ++j)
if (j >= nums[i])
dp[j] += dp[j - nums[i]]; return dp[target];
}

LeetCode Backpack的更多相关文章

  1. leetcode刷题全纪录(持续更新)

    2.Add Two Numbers 原题链接https://leetcode.com/problems/add-two-numbers/ AC解: public ListNode addTwoNumb ...

  2. [LintCode] Backpack VI 背包之六

    Given an integer array nums with all positive numbers and no duplicates, find the number of possible ...

  3. leetcode & lintcode for bug-free

    刷题备忘录,for bug-free leetcode 396. Rotate Function 题意: Given an array of integers A and let n to be it ...

  4. leetcode & lintcode 题解

    刷题备忘录,for bug-free 招行面试题--求无序数组最长连续序列的长度,这里连续指的是值连续--间隔为1,并不是数值的位置连续 问题: 给出一个未排序的整数数组,找出最长的连续元素序列的长度 ...

  5. 我为什么要写LeetCode的博客?

    # 增强学习成果 有一个研究成果,在学习中传授他人知识和讨论是最高效的做法,而看书则是最低效的做法(具体研究成果没找到地址).我写LeetCode博客主要目的是增强学习成果.当然,我也想出名,然而不知 ...

  6. LeetCode All in One 题目讲解汇总(持续更新中...)

    终于将LeetCode的免费题刷完了,真是漫长的第一遍啊,估计很多题都忘的差不多了,这次开个题目汇总贴,并附上每道题目的解题连接,方便之后查阅吧~ 477 Total Hamming Distance ...

  7. [LeetCode] Longest Substring with At Least K Repeating Characters 至少有K个重复字符的最长子字符串

    Find the length of the longest substring T of a given string (consists of lowercase letters only) su ...

  8. Leetcode 笔记 113 - Path Sum II

    题目链接:Path Sum II | LeetCode OJ Given a binary tree and a sum, find all root-to-leaf paths where each ...

  9. Leetcode 笔记 112 - Path Sum

    题目链接:Path Sum | LeetCode OJ Given a binary tree and a sum, determine if the tree has a root-to-leaf ...

随机推荐

  1. 透明窗口(窗口上面文字图片等内容不透明)的实现(使用SetLayeredWindowAttributes API函数)

    透明窗口(窗口上面文字图片等内容不透明)的实现 本文讨论通过SetLayeredWindowAttributes来实现本文的目的. SetLayeredWindowAttributes的实现必须将窗口 ...

  2. Delphi COM编程技术三类型库(库文件中的工具栏,很全)

    在COM组件的使用和开发过程中经常需要获取有关组件的信息.而COM组件以二进制代码的形式发布,如果不借助特定的工具这些相关信息将难以被获取.通过访问类型库就可以查看COM组件的信息. 一.类型库的基础 ...

  3. CCNA实验(1) -- 基本配置

    Ctrl+A: 到行首(Ahead)Ctrl+E: 到行尾(End)Esc+B: 回退一个单词(Back)Esc+F: 前进一个单词(Forward) 1.三种配置模式2.时间时区配置3.设置超时时间 ...

  4. cdoj 邱老师看电影

    //第一次写概率dp //写成记忆化搜索的形式比递推要更方便易懂 //不过好像还是可以写成递推的形式的 但是比较那个…… #include<cstdio> #include<iost ...

  5. poj 3680 Intervals(费用流)

    http://poj.org/problem?id=3680 巧妙的构图. 题目:给定N个区间(ai,bi)权值wi,求最大权和且每个点最多覆盖K次. 构图:将区间端点离散化,将第i个点连第i+1个点 ...

  6. Windows7中搭建Android x86_64及armv8-a操作步骤

    1.        从https://developer.android.com/tools/sdk/ndk/index.html 下载android-ndk-r10d-windows-x86_64. ...

  7. pl/sql developer 编码格式设置(转)

    一.pl/sql developer 中文字段显示乱码 原因:因为数据库的编号格式和pl /sql developer的编码格式不统一造成的. 二.查看和修改oracle数据库字符集: select ...

  8. ToDoList-学习中看到的知识盲点

    1. java中的volatile关键字的作用 2. java类加载器 3. Android源码编译 4. MediaPlayer的用法 5. Html5和web app

  9. VS2013 快捷键乱掉如何修改回来

    比如 CTRL+E+C =注释 F6=重新生成解决方案 CTRL+D+Q=运行时快速监视 工具-->选项-->环境-->键盘-->应用以下其他键盘映射方案,下拉选择 Visua ...

  10. Unity5UGUI 官方教程学习笔记(三)UI BUTTON

    Button Interactable :为了避免与该按钮产生交互,可以设置它为false Transition: 管理按钮在正常情况 ,按下,经过时的显示状态  None  按钮整正常工作 但是在按 ...