当前位置:   article > 正文

动态规划解决0-1背包问题_采用动态规划法求解 0-1 背包问题。问题描述:有 n 个物品,它们有各自的重量 和价

采用动态规划法求解 0-1 背包问题。问题描述:有 n 个物品,它们有各自的重量 和价

0-1背包问题:给定n种物品和一背包。物品 i 的重量似乎 wi,其价值为 vi,背包的容量为 c。问应该如何选择装入背包中的物品,使得装入背包中物品的总价值最大?

例子:

( 1)问题描述
给定几组数据,利用动态规划算法的思想,把 0-1 背包装满并使得其价值最大。
( 2)实验步骤
① 把问题分解成若干个子问题,如背包仅可以容纳 1 个物品且可以容纳 的质量为一等。
② 依次求出各个子问题的最优解。
③ 每个子问题的最优解又可以从它的子问题的最优解中得到。
④ 通过各个子问题的最优解得到原问题的最优解。
c++代码实现代码如下:

  1. #include <iostream>
  2. using namespace std;
  3. /* run this program using the console pauser or add your own getch, system("pause") or input loop */
  4. struct Thing{
  5. int weight;
  6. int value;
  7. };
  8. int main(int argc, char** argv) {
  9. int n;
  10. cout<<"input the number of things:"<<endl;
  11. cin>>n;
  12. int c;
  13. cout<<"input the capacity of the bag:"<<endl;
  14. cin>>c;
  15. Thing things[n];
  16. for(int i=0;i<n;i++){
  17. cin>>things[i].weight;
  18. cin>>things[i].value;
  19. }
  20. // 构造最优解的网格:n行c列
  21. int maxValue[n][c];
  22. for (int i = 0; i < n; i++) {
  23. for (int j = 0; j < c; j++) {
  24. maxValue[i][j] = 0;
  25. }
  26. }
  27. for(int i=0;i<n;i++){
  28. for(int j=1;j<=c;j++){
  29. if(i==0){
  30. maxValue[i][j-1] = (j>=things[i].weight ? things[i].value : 0);
  31. }else{
  32. int topValue=maxValue[i-1][j-1];
  33. int curValue=(things[i].weight<=j ?
  34. (j-things[i].weight>0 ? maxValue[i-1][j-things[i].weight]+things[i].value : things[i].value):topValue);
  35. maxValue[i][j-1]=(curValue > topValue ? curValue:topValue);
  36. }
  37. }
  38. }
  39. for (int i = 0; i < n; i++) {
  40. for (int j = 0; j < c; j++) {
  41. cout<<maxValue[i][j];
  42. cout<<" ";
  43. }
  44. cout<<endl;
  45. }
  46. system("pause");
  47. return 0;
  48. }

参考:https://www.jianshu.com/p/a66d5ce49df5

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/716617
推荐阅读
相关标签
  

闽ICP备14008679号