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

二进制优化多重背包

时间:2019-11-12 09:32:07      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:str   log   class   ons   http   bsp   style   clu   pre   

   核心:  用一些二进制数进行祝贺代替所有的数。

代码:

技术图片
#include <bits/stdc++.h>
using namespace std;
const int M = 10005;
const int N = 10005;
#define ri register int
struct setdian{
    int val,v;
}p[N];
int n,v,w,num,cent,f[N];
int main(){
    scanf("%d",&n);
    while(n--)
    {
        scanf("%d%d%d",&num,&v,&w);
        for(ri k=1;k<=num;k<<1)
        {
          p[++cent].v=k*v;
          p[cent].val=k*w;    
        }
        if(p[cent].v<num*v)
        p[++cent].v=num*v,p[cent].val=num*w;
    }
    scanf("%d",&v);
    for(ri i=1;i<=cent;i++)
    for(ri j=v;j>=p[i].v;j--)
    {
        f[j]=max(f[j-p[i].v]+p[i].val,f[j]);
    }
    
}
View Code

https://i-beta.cnblogs.com/posts/edit

二进制优化多重背包

标签:str   log   class   ons   http   bsp   style   clu   pre   

原文地址:https://www.cnblogs.com/Lamboofhome/p/11839534.html

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