完全背包的题目,但是有一个难点就是要把背包装满
for(int i=1;i<=n;i++)
{
for(int j=vol[i];j<=w;j++)
{
if(dp[j-vol[i]]!=inf)
dp[j]=min(dp[j],dp[j-vol[i]]+val[i]);
}
}
关键就是里面的的if语句这就能保证背包能装满,另外需要对dp数组进行初始化为inf,dp[0]要赋值为0,否则背包中的值无法更新
题解:
点击打开链接http://www.cnblogs.com/kuangbin/archive/2012/09/15/2686573.html
Before ACM can do anything, a budget must be prepared and the necessary financial support obtained. The main income for this action comes from Irreversibly Bound Money (IBM). The idea behind is simple. Whenever some ACM member has any small money, he takes all the coins and throws them into a piggy-bank. You know that this process is irreversible, the coins cannot be removed without breaking the pig. After a sufficiently long time, there should be enough cash in the piggy-bank to pay everything that needs to be paid.
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
But there is a big problem with piggy-banks. It is not possible to determine how much money is inside. So we might break the pig into pieces only to find out that there is not enough money. Clearly, we want to avoid this unpleasant situation. The only possibility is to weigh the piggy-bank and try to guess how many coins are inside. Assume that we are able to determine the weight of the pig exactly and that we know the weights of all coins of a given currency. Then there is some minimum amount of money in the piggy-bank that we can guarantee. Your task is to find out this worst case and determine the minimum amount of cash inside the piggy-bank. We need your help. No more prematurely broken pigs!
3 10 110 2 1 1 30 50 10 110 2 1 1 50 30 1 6 2 10 3 20 4
The minimum amount of money in the piggy-bank is 60. The minimum amount of money in the piggy-bank is 100. This is impossible.
#include<stdio.h>
#include<string.h>
#include<algorithm>
#define inf 0x3f3f3f3f
#define maxw 10005
using namespace std;
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int e,f,n,w;
int val[505]={0},vol[505]={0},dp[maxw];;
memset(dp,inf,sizeof(dp));
scanf("%d%d%d",&e,&f,&n);
w=f-e;
for(int i=1;i<=n;i++)
scanf("%d%d",&val[i],&vol[i]);
if(w==0)
{
printf("The minimum amount of money in the piggy-bank is 0.\n");
continue;
}
dp[0]=0;
for(int i=1;i<=n;i++)
{
for(int j=vol[i];j<=w;j++)
{
if(dp[j-vol[i]]!=inf)
dp[j]=min(dp[j],dp[j-vol[i]]+val[i]);
}
}
if(dp[w]==inf)
printf("This is impossible.\n");
else
printf("The minimum amount of money in the piggy-bank is %d.\n",dp[w]);
}
return 0;
}