hdu3033 背包变形
Posted a_clown_cz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu3033 背包变形相关的知识,希望对你有一定的参考价值。
题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=3033
大意:每类物品中至少买一件,比较简单
AC代码:
#include<iostream> #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #define ll long long const int maxn=1e5+5; const int INF=0x3f3f3f3f; int dp[15][maxn]; int a[105],p[105],v[105]; int main() { int N,M,K; while(scanf("%d%d%d",&N,&M,&K)==3) { for(int i=1; i<=N; i++) scanf("%d%d%d",&a[i],&p[i],&v[i]); memset(dp,0,sizeof(dp)); for(int i=1; i<=K; i++) { for(int j=0; j<=N; j++) dp[i][j]=-INF; for(int k=1; k<=N; k++) { if(a[k]==i) { for(int j=M; j>=p[k]; j--) dp[i][j]=max(dp[i][j],max(dp[i][j-p[k]]+v[k],dp[i-1][j-p[k]]+v[k])); } } } if(dp[K][M]<=0) puts("Impossible"); else printf("%d\n",dp[K][M]); } return 0; }
以上是关于hdu3033 背包变形的主要内容,如果未能解决你的问题,请参考以下文章