我是靠谱客的博主 文静小天鹅,最近开发中收集的这篇文章主要介绍[背包DP] 洛谷P1757 分组背包,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目

LP1757

思路

背包九讲

代码

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <vector>
#include <utility>
#define _for(i,a,b) for(int i = (a); i<(b); i++)
#define _rep(i,a,b) for(int i = (a); i<=(b); i++)
using namespace std;
const int maxm = 1000 + 10;
const int maxt = 100 + 10;
int n, c, v, w, d[maxm];
vector<pair<int, int> > item[maxt];
int main() {
scanf("%d%d", &c, &n);
int s, t = 0;
_for(i, 0, n) {
scanf("%d%d%d", &v, &w, &s);
s--;
if (item[s].empty()) t++;
item[s].push_back(make_pair(v, w));
}
_for(i, 0, t) {
for (int j = c; j >= 0; j--)
for (vector<pair<int, int> >::iterator iter = item[i].begin(); iter != item[i].end(); ++iter)
if (j >= (*iter).first)
d[j] = max(d[j], d[j - (*iter).first] + (*iter).second);
}
int ans = 0;
_rep(i, 0, c) ans = max(ans, d[i]);
printf("%dn", ans);
return 0;
}

最后

以上就是文静小天鹅为你收集整理的[背包DP] 洛谷P1757 分组背包的全部内容,希望文章能够帮你解决[背包DP] 洛谷P1757 分组背包所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部