zoukankan      html  css  js  c++  java
  • POJ3260The Fewest Coins[背包]

    The Fewest Coins
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 6299   Accepted: 1922

    Description

    Farmer John has gone to town to buy some farm supplies. Being a very efficient man, he always pays for his goods in such a way that the smallest number of coins changes hands, i.e., the number of coins he uses to pay plus the number of coins he receives in change is minimized. Help him to determine what this minimum number is.

    FJ wants to buy T (1 ≤ T ≤ 10,000) cents of supplies. The currency system has N (1 ≤ N ≤ 100) different coins, with values V1V2, ..., VN (1 ≤ Vi ≤ 120). Farmer John is carrying C1 coins of value V1C2 coins of value V2, ...., and CN coins of value VN (0 ≤ Ci ≤ 10,000). The shopkeeper has an unlimited supply of all the coins, and always makes change in the most efficient manner (although Farmer John must be sure to pay in a way that makes it possible to make the correct change).

    Input

    Line 1: Two space-separated integers: N and T
    Line 2: N space-separated integers, respectively V1V2, ..., VN coins (V1, ...VN
    Line 3: N space-separated integers, respectively C1C2, ..., CN

    Output

    Line 1: A line containing a single integer, the minimum number of coins involved in a payment and change-making. If it is impossible for Farmer John to pay and receive exact change, output -1.

    Sample Input

    3 70
    5 25 50
    5 2 1

    Sample Output

    3

    Hint

    Farmer John pays 75 cents using a 50 cents and a 25 cents coin, and receives a 5 cents coin in change, for a total of 3 coins used in the transaction.

    Source


    题意:FJ每种硬币有限,售货员无限,最小化交易用的硬币数

    FJ多重背包,售货员完全背包
    min一下f[i+m]+d[i]
    NOTICE:体积选多大呢?
    有一个证明,如果John的付款数大于了maxv*maxv+m,即付硬币的数目大于了maxv,根据鸽笼原理,至少有两个的和对maxv取模的值相等,也就是说,这部分硬币能够用更少的maxv来代替。证毕。
    看不懂算了
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    const int N=105,M=120*120+1e4+5,INF=1e9;
    int read(){
        char c=getchar();int x=0,f=1;
        while(c<'0'||c>'9'){if(c=='-')f=-1; c=getchar();}
        while(c>='0'&&c<='9'){x=x*10+c-'0'; c=getchar();}
        return x*f;
    }
    int n,m,om,v[N],c[N],ans=INF,mxv=0;
    int f[M],d[M];
    inline void zp(int v,int w){
        for(int j=m;j>=v;j--) f[j]=min(f[j],f[j-v]+w);
    }
    inline void cp(int v){
        for(int j=v;j<=m;j++) f[j]=min(f[j],f[j-v]+1);
    }
    inline void mp(int v,int c){
        if(v*c>=m){cp(v);return;}
        int k=1;
        while(k<c){
            zp(k*v,k);
            c-=k;
            k*=2;
        }
        zp(c*v,c);
    }
    int main(){
        n=read();m=om=read();
        for(int i=1;i<=n;i++) v[i]=read(),mxv=max(mxv,v[i]);m+=mxv*mxv;
        for(int i=1;i<=n;i++) c[i]=read();
        
        for(int i=1;i<=m;i++) d[i]=INF;d[0]=0;
        for(int i=1;i<=n;i++) 
            for(int j=v[i];j<=m;j++) 
                d[j]=min(d[j],d[j-v[i]]+1);    
        for(int i=1;i<=m;i++) f[i]=INF;f[0]=0;
        for(int i=1;i<=n;i++) mp(v[i],c[i]);
        for(int i=0;i<=m-om;i++)
            if(f[i+om]+d[i]<ans) ans=f[i+om]+d[i];
        if(ans>=INF) printf("-1");
        else printf("%d",ans);
    }
     
  • 相关阅读:
    转:Visio之取消自动对齐与粘附
    转:Excel怎样修改图例名称
    一张图说明学习率和loss之间的关系
    转:loss不收敛或不下降问题处理经验
    N-UCLA骨架数据可视化
    转:IEEE论文投稿流程(格式说明,新手指南,模板)
    Ubuntu下无法安装sun-java6-jdk的解决办法
    Git 学习笔记一
    轮播特效小项目总结
    第9次作业--接口及接口回调
  • 原文地址:https://www.cnblogs.com/candy99/p/5901601.html
Copyright © 2011-2022 走看看