解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class 背包 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
int m=sc.nextInt();
int n=sc.nextInt();
int[][] wi=new int[n+1][2];
for (int i = 1; i <=n; i++) {
wi[i][0]=sc.nextInt();///重量
wi[i][1]=sc.nextInt();//质量
}
int[][] dp=new int[n+1][m+1];
for (int i = 1; i <=n; i++) {
for (int j = 1; j <=m; j++) {
if (wi[i][0]>j) {
dp[i][j]=dp[i-1][j];
}else {
dp[i][j]=Math.max(dp[i-1][j],wi[i][1]+dp[i][j-wi[i][0]]);
}
}
}
System.out.println("max="+dp[n][m]);
}
}
0.0分
3 人评分
【计算两点间的距离】 (C语言代码)浏览:1168 |
C语言训练-最大数问题 (C语言代码)浏览:648 |
A+B for Input-Output Practice (VII) (C++代码)浏览:643 |
求组合数 (C语言代码)浏览:1206 |
WU-字符串比较 (C++代码)浏览:824 |
WU-输入输出格式练习 (C++代码)浏览:1133 |
printf基础练习2 (C语言代码)浏览:796 |
C语言程序设计教程(第三版)课后习题12.3 (C语言代码)浏览:587 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:545 |
A+B for Input-Output Practice (I) (C语言代码)浏览:451 |