硬币变化逻辑

问题描述

我一直在解决关于自动售货机找零的问题(使用 10ct、20ct、50ct、100ct 和 200ct 硬币。)

所以可以说咖啡的价格是 40 克拉。用户投入 2 欧元(标有 200 克拉)。

现在我应该弄清楚如何将 160cts 的变化返回给用户。有 2 个条件:A) 取最短的组合,但 B) 只有当收银机有足够的硬币来分发所述组合时。

所以在我的例子中,最短的组合是 100cts + 50cts + 10cts。但是,如果比方说,寄存器中没有剩余 10ct 硬币,则首选组合应该是 100ct + 20ct + 20ct + 20ct。

public void coinChange (int change) {
    
    int TwoeuroCount = 0,OneEuroCount= 0,FiftyCentsCount = 0,TwentyCentsCount = 0,TenCentsCount = 0;
    
    while (change > 0) {
            
            TwoeuroCount = change / 200;

            if(register.availableTwoeuros(TwoeuroCount) == true) {
                register.withdrawTwoeuros(TwoeuroCount);
                change = change - 200 * TwoeuroCount;

            //the method .availableTwoeuros returns true if AmountOfTwoeuros - TwoeuroCount >= 0
            }
            
            OneEuroCount = change / 100;

            if(register.availableOneEuro(OneEuroCount) == true) {
                register.withdrawOneEuro(OneEuroCount);
                change = change - 100 * OneEuroCount;
            }
            
            FiftyCentsCount = change / 50;

            if(register.availableFiftyCents(FiftyCentsCount) == true) {
                register.withdrawFiftyCents(FiftyCentsCount);
                change = change - 50 * FiftyCentsCount;
            }
            
            TwentyCentsCount = change / 20;

            if (register.availableTwentyCents(TwentyCentsCount) == true) {
                register.withdrawTwentyCents(TwentyCentsCount);
                change = change - 20 * TwentyCentsCount;
            }
            
            TenCentsCount = change / 10;

            if(register.availableTenCents(TenCentsCount) == true) {
                register.withdrawTenCents(TenCentsCount);
                change = change - 10 * TenCentsCount;
            }       
    }   
}

如果有足够的硬币,这非常适合找到最短的组合。但如果我从 AmountTenCents = 0 开始,该方法将只需要 1 欧元和 50 cts 并保持不变。

解决方法

在你的注册类中实现一个方法:

register.GetSmallestChangeAvailable()

这说明了可用的最小更改是什么。

在减去硬币之前检查一下。您还应该处理剩余一枚硬币但会使用两个硬币的情况 - 例如,如果它有一枚 20 美分的硬币并试图提供 40 美分的零钱。 例如代替

        if(register.availableFiftyCents(FiftyCentsCount) == true) {
            register.withdrawFiftyCents(FiftyCentsCount);
            change = change - 50 * FiftyCentsCount;
        }

使用

for (int i = 0; i< fiftyCentCount; i++)
{
   if ( (change - 50 == 0 || change - 50 >= register.GetSmallestChangeAvailable() && register.availableFiftCents(1))
   {
      register.withdrawFiftyCents(FiftyCentsCount);
      change = change - 50 * FiftyCentsCount;
   }
}

最好将重复的代码提取到一个方法中。

编辑: 如何实现 GetSmallestAvailableChange() 的选项取决于 Register 类的实现方式。但是,根据您在此处提到的内容,以下内容可行:

if (AvailableTenCents(1))
    return 10;
if (AvailableTwentyCents(1))
    return 20;
 if (AvailableFiftyCents(1))
    return 50;

等等。

,

假设你有:

  • 所有可能的硬币数组 VALUES:[10,20,50,100,200]
  • 每个 SUPPLY 的当前 VALUE 硬币数组
  • 对应于 WEIGHSVALUES 数组(权重较大,值较小):[4,3,2,1,0]

然后您可以找到一个组合的硬币,其总和为零钱并且具有最小的重量

让组合 c 成为硬币的当前组合。例如,c = [0,0] 表示您正在考虑这样一种组合:没有 10 美分硬币,一个 20 美分硬币,一个 50 美分硬币,两个 1 欧元硬币和没有 2 欧元硬币。

您以组合 c = [0,0] 开头。

使用权重将隐含地向您保证结果组合将具有最小权重,因此是您正在寻找的结果。例如:

// Both combinations represent the change of 160 cents
c = [1,0] => weight: 4*1 + 3*0 + 1*2 + 1*1 + 0*0 = 7
c = [0,0] => weight: 4*0 + 3*3 + 0*2 + 1*1 + 0*0 = 10

这样的事情应该可以工作:

import java.util.Arrays;
import java.util.stream.IntStream;

public class Change {
    /** The number of unique coins. */
    static final int N = 5;
    static final int[] VALUES = { 10,200 };
    static final int[] WEIGHTS = { 4,0 };
    static final int[] SUPPLY = { 10,35,40,2 };

    static int[][] result = {
        {
            // The minimum weight
            Integer.MAX_VALUE 
        },{
            // The resulting combination of coins
            0,0
        }
     };

    public static void main(String[] args) {
        int change = 160;
        solve(new int[N],change);

        if (result[0][0] == Integer.MAX_VALUE) {
            System.out.println(
                "Can't return the change with the given SUPPLY of coins"
            );
        } else {
            System.out.println(Arrays.toString(result[1]));
        }
    }

    static void solve(int[] c,int change) {
        // check if out of supply
        boolean isOutOfSupply = IntStream.range(0,N).anyMatch(i -> SUPPLY[i] < c[i]);
        if (isOutOfSupply) return;

        // compute weight
        int weight = IntStream.range(0,N).map(i -> WEIGHTS[i] * c[i]).sum();

        // compute sum
        int sum = IntStream.range(0,N).map(i -> VALUES[i] * c[i]).sum();

        if (sum == change && weight < result[0][0]) {
            result[0][0] = weight;
            result[1] = c;
        } else if (sum < change) {
            IntStream.range(0,N).forEach(i -> solve(increment(c,i),change));
        }
    }

    static int[] increment(int[] array,int index) {
        int[] clone = array.clone();
        clone[index]++;
        return clone;
    }
}