首页 > 代码库 > hdu3033 背包变形

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 背包变形