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. 二维费用的背包问题的主要内容,如果未能解决你的问题,请参考以下文章