HDU 1712 ACboy needs your help 分组背包模板

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=1712

题意

有n门课,每门课所能获得的价值与在这门课上所花时间有关。用val[i][j] 表示在i课花费j天时间能获得的价值。给m天求最大价值。

思路

n门课,每门课都有m种选法,且只能选一种。分组背包模板。。

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<set>
#include<map>
#define ll long long
using namespace std;
const int INF = ( 2e9 ) + 2;
const ll maxn = 110;
int val[maxn][maxn];
int dp[maxn];
int solve(int n,int m)
{
    for(int k=1;k<=n;k++)// n 组
    {
        for(int v=m;v>=0;v--)
        for(int i=1;i<=m;i++)
        if(v-i>=0)
        dp[v]=max(dp[v],dp[v-i]+val[k][i]);
    }
    return dp[m];
}
int main()
{
    int n,m;
    while(~scanf("%d%d",&n,&m)&&(n+m))
    {
        for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
        scanf("%d",&val[i][j]);
        memset(dp,0,sizeof(dp));
        printf("%d\n",solve(n,m));
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值