AC_8. 二维费用的背包问题

Posted gcter

tags:

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

技术图片

代码:

/*
二维费用背包问题
*/
#include<iostream>
#include<cstring>
#include<algorithm>

using namespace std;

const int N = 110;

int n, v, m;
int dp[N][N];

int main()

    cin >> n >> v >> m;
    for (int i = 0; i < n; i++)
    
        int a, b, c;
        cin >> a >> b >> c;
        for (int j = v; j >= a; j--)
        
            for (int k = m; k >= b; k--)
            
                dp[j][k] = max(dp[j][k], dp[j - a][k - b] + c);
            
        
    

    cout << dp[v][m] << endl;
    return 0;

 

以上是关于AC_8. 二维费用的背包问题的主要内容,如果未能解决你的问题,请参考以下文章

HDU_3496_(二维费用背包)

[H背包] lc879. 盈利计划(二维费用背包+难题+状态定义)

二维费用的背包问题

[M背包] lc474. 一和零(二维费用背包+好题)

第五讲 二维费用的背包问题(粗糙,勿点)

分组背包+二维费用背包