AcWing 5. 多重背包问题 II

Posted qingyuyyyyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 5. 多重背包问题 II相关的知识,希望对你有一定的参考价值。

//二进制优化    最后变为01背包 
#include <iostream>
#include <algorithm>
using namespace std;
const int N = 12010, M = 2010;
int n, m;
int v[N], w[N];
int f[M];
int main() {
    cin >> n >> m;
    int cnt = 0;
    for (int i = 1; i <= n; i ++ ) {
        int a, b, s;
        cin >> a >> b >> s;
        int k = 1;
        while (k <= s) {
            cnt ++ ;
            v[cnt] = a * k;
            w[cnt] = b * k;
            s -= k;
            k *= 2;
        }
        if (s > 0) {
            cnt ++ ;
            v[cnt] = a * s;
            w[cnt] = b * s;
        }
    }
    n = cnt;
    for (int i = 1; i <= n; i ++ )
        for (int j = m; j >= v[i]; j -- )
            f[j] = max(f[j], f[j - v[i]] + w[i]);
    cout << f[m] << endl;
    return 0;
}

 

 

以上是关于AcWing 5. 多重背包问题 II的主要内容,如果未能解决你的问题,请参考以下文章

AC_5. 多重背包问题 II

多重背包优化

AcWing 4. 多重背包问题(多重背包 朴素版)

AcWing 318. 划分大理石 多重背包三

动态规划背包问题总结:01完全多重与其二进制优化分组背包 题解与模板

ACwing(基础)--- 01背包和完全背包多重背包问题