Charlie's Change POJ

Charlie is a driver of Advanced Cargo Movement, Ltd. Charlie drives a lot and so he often buys coffee at coffee vending machines at motorests. Charlie hates change. That is basically the setup of your next task. 

Your program will be given numbers and types of coins Charlie has and the coffee price. The coffee vending machines accept coins of values 1, 5, 10, and 25 cents. The program should output which coins Charlie has to use paying the coffee so that he uses as many coins as possible. Because Charlie really does not want any change back he wants to pay the price exactly. 

Input

Each line of the input contains five integer numbers separated by a single space describing one situation to solve. The first integer on the line P, 1 <= P <= 10 000, is the coffee price in cents. Next four integers, C1, C2, C3, C4, 0 <= Ci <= 10 000, are the numbers of cents, nickels (5 cents), dimes (10 cents), and quarters (25 cents) in Charlie's valet. The last line of the input contains five zeros and no output should be generated for it.

Output

For each situation, your program should output one line containing the string "Throw in T1 cents, T2 nickels, T3 dimes, and T4 quarters.", where T1, T2, T3, T4 are the numbers of coins of appropriate values Charlie should use to pay the coffee while using as many coins as possible. In the case Charlie does not possess enough change to pay the price of the coffee exactly, your program should output "Charlie cannot buy coffee.".

Sample Input

12 5 3 1 2
16 0 0 0 1
0 0 0 0 0

Sample Output

Throw in 2 cents, 2 nickels, 0 dimes, and 0 quarters.
Charlie cannot buy coffee.

多重背包无需刻意记录路径只需要把dp数组保存

然后写一个函数判断当前状态由什么状态推出即可

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
#include<iostream>
using namespace std;
int c[5];
int val[5]= {0,1,5,10,25};
int dp[10005];
int mp[5][10005];
int ans[5];
int main()
{
    int p;
    while(~scanf("%d%d%d%d%d",&p,&c[1],&c[2],&c[3],&c[4]))
    {
        if(p==0&&c[1]==0&&c[2]==0&&c[3]==0&&c[4]==0) break;
        memset(ans,0,sizeof(ans));
        memset(dp,-1,sizeof(dp));
        dp[0]=0;
        for(int i=1; i<=4; i++)
        {
            if(c[i]*val[i]<p)
            {
                for(int k=1; k<=c[i]; k*=2)
                {
                    for(int j=p; j>=0; j--)
                    {
                        if(j>=val[i]*k&&dp[j-val[i]*k]!=-1) dp[j]=max(dp[j-val[i]*k]+k,dp[j]);
                    }
                    c[i]-=k;
                }
                if(c[i])
                {
                    for(int j=p; j>=0; j--)
                    {
                        if(j>=val[i]*c[i]&&dp[j-val[i]*c[i]]!=-1) dp[j]=max(dp[j-val[i]*c[i]]+c[i],dp[j]);
                    }
                }
            }
            else
            {
                for(int j=0; j<=p; j++)
                {
                    if(j>=val[i]&&dp[j-val[i]]!=-1) dp[j]=max(dp[j-val[i]]+1,dp[j]);
                }
            }
            for(int j=1;j<=p;j++) mp[i][j]=dp[j];
        }
        if(dp[p]==-1) {printf("%s
","Charlie cannot buy coffee.");continue;}
        int j=dp[p];
        int pos=p;
        for(int i=4;i>=0;i--)
        {
            while (pos>=val[i]&&mp[i][pos-val[i]]==j-1)
            {
                pos=pos-val[i];
                ans[i]++;
                j--;
            }
        }
        printf("Throw in %d cents, %d nickels, %d dimes, and %d quarters.
",ans[1],ans[2],ans[3],ans[4]);
    }
}
原文地址:https://www.cnblogs.com/caowenbo/p/11852323.html