SPOJ PIGBANK

// http://www.spoj.com/problems/PIGBANK/
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;

#define Max 10000

// dp(x) means the minimal value of conins with weight x.
int dp[Max+1];

// temp(x) means whether there is a solution to get minimal value of conins with weight x.
bool temp[Max+1];

// w(x) the weight of conin x
// v(x) the value of conin x
int w[500],v[500];

int main()
{
    int T,E,F,N;
    int i,j;

    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d%d",&E,&F,&N);

        for(i=0;i<N;i++)
        scanf("%d%d",&v[i],&w[i]);

        memset(dp,0,sizeof(dp));
        memset(temp,0,sizeof(temp));
        temp[0]=true;


        // variable i means the ith coin
        for(i=0;i<N;i++)
        {
        	// variable j means weight j, assuming the conin is ordered according to their weights.
            for(j=w[i];j<=Max;j++)
            {
            	dp(w) = min(f(w-wi))
            	
                if(temp[j-w[i]]&&dp[j]!=0)    
                {
                	// if:   weight of (j - w[i]) has a solution and weight of j already has a solution
                	// then: compare current solution and the solution by adding ith coin, choose the smaller one
                    dp[j]=dp[j]<dp[j-w[i]]+v[i]? dp[j]:dp[j-w[i]]+v[i];
                    temp[j]=true;
                }
                else if(temp[j-w[i]]&&dp[j]==0)
               {
               		// if: weight of (j-w[i]) has a solution, and weight of j does not have a solution so far
               		// then: assign current solution by adding ith conin weight and value.
                    dp[j]=dp[j-w[i]]+v[i];
                    temp[j]=true;
                }

                cout << "dp[" << j << "]=" << dp[j] << endl;
            }
     }

    if(temp[F-E]==false)
    {
       printf("This is impossible.\n");
    }
     else
     {
        printf("The minimum amount of money in the piggy-bank is %d.\n",dp[F-E]);
     }

   }
   return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值