【多重背包】HDU 1059 Dividing

来源:互联网 发布:foxmail数据存在哪里 编辑:程序博客网 时间:2024/06/03 06:42

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1059

同时代码里面附有0-1背包、完全背包、多重背包的代码~

#include <cstdio>#include <cstring>#include <iostream>using namespace std;int a[7];int dp[121111];int v,k;void ZeroOnePack(int cost,int weight) {    for(int i=v;i>=cost;i--)        dp[i] = max(dp[i] , dp[i-cost] + weight);    }void CompletePack(int cost,int weight) {    for(int i=cost;i<=v;i++)        dp[i] = max(dp[i] , dp[i-cost] + weight);    }void MultiplePack(int cost,int weight,int amount) {    if(cost * amount >= v) CompletePack(cost,weight);    else {        for(int k=1;k<amount;) {            ZeroOnePack(k*cost,k*weight);            amount -= k;            k <<= 1;            }            ZeroOnePack(amount*cost,amount*weight);    }  }int main() {    int cas = 1;    while(1) {        int tot = 0;        for(int i=1;i<=6;i++) {            scanf("%d",&a[i]);            tot += a[i] * i;        }            if(tot == 0) break;        printf("Collection #%d:\n",cas++);        if(tot % 2) puts("Can't be divided.");        else {            v = tot / 2;            memset(dp,0,sizeof(dp));            for(int i=1;i<=6;i++) {                MultiplePack(i,i,a[i]);                }                if(dp[v] == v) puts("Can be divided.");            else puts("Can't be divided.");        }        puts("");    }    return 0;    }


0 0
原创粉丝点击