我今天试图从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问题之一......
答案 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
的利润。但是,选择Item2
和Item3
会产生总利润7
。