码迷,mamicode.com
首页 > 其他好文 > 详细

hihoCoder 1043 完全背包 (dp)

时间:2015-04-15 22:54:43      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

http://hihocoder.com/problemset/problem/1043

动态转移方程 :for v=cost..V 

        f[v]=max(f[v],f[v-c[i]]+w[i]);

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

int n,m;
int dp[210000]={0};
void CompletePack(int cost,int weight)
{
    for(int i=cost;i<=m;i++)
    {
        dp[i]=max(dp[i],dp[i-cost]+weight);
    }
}

int main()
{
    int a,b;
    scanf("%d%d",&n,&m);
    for(int i=0;i<n;i++)
    {
       scanf("%d%d",&a,&b);
       CompletePack(a,b);
    }
    printf("%d\n",dp[m]);
    return 0;
}

 

hihoCoder 1043 完全背包 (dp)

标签:

原文地址:http://www.cnblogs.com/nowandforever/p/4430189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!