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

【51NOD-0】1085 背包问题

时间:2017-06-01 19:38:11      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:ace   背包问题   span   std   amp   string   printf   max   背包   

【算法】背包DP

【题解】f[j]=(f[j-w[i]]+v[i]) 记得倒序(一个物品只能取一次)

技术分享
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
const int maxn=10010;
int n,W,w[maxn],v[maxn],f[maxn];
int main()
{
    scanf("%d%d",&n,&W);
    for(int i=1;i<=n;i++)scanf("%d%d",&w[i],&v[i]);
    for(int i=1;i<=n;i++)
    {
        for(int j=W;j>=w[i];j--)
        {
            f[j]=max(f[j],f[j-w[i]]+v[i]);
        }
    }
    printf("%d",f[W]);
    return 0;
}
View Code

 

【51NOD-0】1085 背包问题

标签:ace   背包问题   span   std   amp   string   printf   max   背包   

原文地址:http://www.cnblogs.com/onioncyc/p/6930295.html

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