临时文章

#include "stdafx.h"

const double goods[] = {0.5, 0.2, 0.33, 0.28, 0.88, 0.01, 0.02, 0.05, 0.77, 0.62};
const double maxLoad = 1.0;
int numBoxes = sizeof(goods) / sizeof (goods[0]);
int nMinBoxes = numBoxes;
unsigned int bitmap = (1 << numBoxes) - 1;

void Packaging(int nBoxes, double curLoad, unsigned int used)
{
    if ((used & bitmap) == bitmap)
    {
        if (nBoxes < nMinBoxes)
        {
            nMinBoxes = nBoxes;
        }
        return;
    }

    for (int i = 0; i < numBoxes; ++i)
    {
        double load = curLoad;
        unsigned int mask = used;
        if (((mask >> i) & 1) == 0)
        {
            mask |= (1 << i);
            if (goods[i] + load > maxLoad)
            {
                ++nBoxes;
                load = goods[i];
            }
            else
            {
                load += goods[i];
            }
            Packaging(nBoxes, load, mask);
        }
    }
}

int main(void)
{
    Packaging(0, 1.0, 0);
    _tprintf(_T("At least %d boxes %s needed\n"), nMinBoxes, nMinBoxes > 1 ? _T("are") : _T("is"));
    getchar();
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值