在我的背包实施中遇到问题(PARTY)

时间:2015-01-21 10:53:49

标签: c++ algorithm dynamic-programming knapsack-problem

我今天试图从spoj做this simple question,这是背包问题,我已经按照以下方式实现了它:

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;

int main(void)
{
    while(true)
    {
        int budget, t;
        scanf("%d%d", &budget, &t);
        if(budget == 0 && t == 0)
            break;

        int cost[t], fun[t]; 
        vector<pair<double, int> > knap;
        for(int i = 0;i < t;i++)
        {
            scanf("%d%d", &cost[i], &fun[i]);
            knap.push_back(pair<double, int>(double(fun[i])/double(cost[i]), i));        
        }
        sort(knap.rbegin(), knap.rend());
        int totfun = 0, bud = budget;
        for(int i = 0;i < int(knap.size());i++)
        {
            if(bud - cost[knap[i].second] >= 0)
            {
                bud -= cost[knap[i].second];
                totfun += fun[knap[i].second];        
            }
        }
        printf("%d %d\n", budget-bud, totfun);
    }
}

但是这个解决方案给了WA(错误答案)。我已经在spoj自己的论坛中尝试了所有测试用例,我的代码似乎全部通过了,任何人都可以指导我,这是我尝试过的第一个DP问题之一......

1 个答案:

答案 0 :(得分:2)

问题中的代码通过Dynamic Programming实现精确解决方案,但是贪婪算法通常不会计算最优解。然而,问题中链接的任务显然需要生成最优解。

贪婪算法的次优性可以通过考虑以下实例来证明。

Item 1: Function 6, Cost 4 (Ratio 18/12)
Item 2: Function 4, Cost 3 (Ratio 16/12)
Item 3: Function 3, Cost 3 (Ratio 12/12)

Capacity: 6

贪婪算法会选择Item 1,产生6的利润。但是,选择Item2Item3会产生总利润7