• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            01背包問題

              1 #include <iostream>
              2 #include <vector>
              3 #include <algorithm>
              4 #define max(a,b) ((a)>(b))?(a):(b)
              5 using namespace std;
              6 //寫出來之后,嘗試把每一個(gè)for循環(huán)用for_each來替換。或者將公用的for流程用函數(shù)替代
              7 struct PrintResult 
              8 {
              9     void operator()(int i)
             10     {
             11         cout << i << " ";
             12     }
             13 }printResult;
             14 
             15 struct PrintVecResult 
             16 {
             17     void operator()(vector<int> vec)
             18     {
             19         for_each(vec.begin(), vec.end(), printResult);
             20         cout << endl;
             21     }
             22 }printVecResult;
             23 
             24 int knapsack(vector<int> &vecWeight, vector<int> &vecValue, int capacity)
             25 {
             26     int num = vecWeight.size();
             27     vector<vector<int> > f(num, vector<int>(capacity, 0));
             28     vector<int> result(num, 0);
             29 
             30     int j = 0;
             31     int i = 0;
             32     for (i = 1; i <= num; ++i)
             33     {
             34         for (j = 1; j <= capacity; ++j)
             35         {
             36             if (j >= vecWeight[i])
             37             {
             38                 f[i][j] = max(f[i-1][j], f[i-1][j-vecWeight[i]] + vecValue[i]);
             39             }
             40             else
             41             {
             42                 f[i][j] = f[i-1][j];
             43             }
             44         }
             45     }
             46     //打印f數(shù)組表
             47     for_each(f.begin(), f.end(), printVecResult);
             48     
             49     //打印背包所能容納的最大價(jià)值
             50     cout << f[num][capacity] << endl;
             51 
             52     //打印產(chǎn)生最大價(jià)值的背包中物品的編號(hào)
             53     
             54     for (j = capacity, i = num; i >= 1--i)
             55     {
             56         //result[i] = f[i][j] > f[i-1][j] ? 1 : 0; 
             57         if (f[i][j] > f[i-1][j])
             58         {
             59             result[i] = 1;
             60             j = j - vecWeight[i];
             61         }
             62         else
             63         {
             64             result[i] = 0;
             65         }
             66     }
             67     
             68     for (i = 1; i <= num; ++i)
             69     {
             70         if (1 == result[i])
             71         {
             72             cout << i << " ";
             73         }
             74     }
             75     return  f[num][capacity] ;
             76 }
             77 
             78 
             79 int main()
             80 {
             81     int num = 0;
             82     int capacity = 0;
             83     cin >> num;
             84     cin >> capacity;
             85 
             86     vector<int> weight;
             87     vector<int> value;
             88     weight.push_back(0);
             89     value.push_back(0);
             90 
             91     for (int i = 1; i <= num; ++i)
             92     {
             93         int tempWeight = 0;
             94         int tempValue = 0;
             95         cin >> tempWeight >> tempValue;
             96         weight.push_back(tempWeight);
             97         value.push_back(tempValue);
             98     }
             99 
            100     knapsack(weight, value, capacity);
            101 
            102     return 0;
            103 }

            posted on 2011-06-07 00:55 MrRightLeft 閱讀(321) 評論(1)  編輯 收藏 引用 所屬分類: C/C++

            評論

            # re: 01背包問題 2012-07-10 10:28 SunRise_at

            其實(shí)有個(gè)背包九講,講各種背包問題。。  回復(fù)  更多評論   

            <2011年6月>
            2930311234
            567891011
            12131415161718
            19202122232425
            262728293012
            3456789

            導(dǎo)航

            統(tǒng)計(jì)

            隨筆分類

            隨筆檔案

            文章分類

            文章檔案

            搜索

            最新評論

            閱讀排行榜

            評論排行榜

            精品久久人人爽天天玩人人妻| 国内精品久久久久久野外| 国产精品久久成人影院| 精品久久久无码21p发布| 亚洲人成网站999久久久综合| 久久久精品日本一区二区三区| 精品久久久久久99人妻| 国产成人综合久久精品尤物| 国产精品综合久久第一页| 亚洲国产精品久久| 精品久久人人做人人爽综合| 久久男人AV资源网站| 少妇久久久久久被弄到高潮| 亚洲欧洲中文日韩久久AV乱码| 亚洲精品tv久久久久| 久久久久久国产精品美女| 久久久久人妻一区精品性色av| 久久er99热精品一区二区| 久久亚洲国产午夜精品理论片| 国产综合精品久久亚洲| 久久国产免费直播| 69国产成人综合久久精品| 久久久久18| 久久精品人妻中文系列| 国产亚洲婷婷香蕉久久精品| 国产69精品久久久久99| 欧美亚洲国产精品久久久久| 久久夜色精品国产噜噜亚洲AV| 亚洲国产精品久久| 亚洲午夜久久久久妓女影院| 久久婷婷国产麻豆91天堂| 久久婷婷午色综合夜啪| 国产精品福利一区二区久久| 欧美午夜A∨大片久久| 久久精品无码午夜福利理论片| 精品国产婷婷久久久| 99久久人妻无码精品系列| 伊人久久亚洲综合影院| 一本伊大人香蕉久久网手机| 天堂久久天堂AV色综合| 久久久99精品一区二区|