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

背包解法2

时间:2020-07-29 21:15:50      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:algorithm   turn   ++   stream   cst   max   分组   cstring   i++   

分组背包:

#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
int n,m;
const int N=105;
int f[N],v[N],w[N];
int main()
{
    cin>>n>>m;
    for(int i=1;i<=n;i++)
    {
        int s;
        cin>>s;
        for(int j=1;j<=s;j++)
        cin>>v[j]>>w[j];
        for(int j=m;j>=0;j--)
        for(int k=1;k<=s;k++)
        if(j>=v[k])
        f[j]=max(f[j],f[j-v[k]]+w[k]);
    }
    cout<<f[m];
    return 0;
}

  

背包解法2

标签:algorithm   turn   ++   stream   cst   max   分组   cstring   i++   

原文地址:https://www.cnblogs.com/dazhi151/p/13399030.html

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