• 【Leetcode】322. Coin Change


    You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1.

    Example 1:
    coins = [1, 2, 5], amount = 11
    return 3 (11 = 5 + 5 + 1)

    Example 2:
    coins = [2], amount = 3
    return -1.

    Tips:给定一个coins[]数组,表示现有的硬币类型;给定一个整数amount表示要组成的金钱总数。

    根据coins[],求出组成amount所需的最少的硬币数。

    解法一:循环 :①初始化一个数组dp,并将数组中的值都赋值为Integer.MAX_VALUE;

    ② 两层循环,第一层遍历amount 第二层遍历coins[].length,当总钱数减去一个硬币的值小于0,证明无法组成该钱数,continue。或者上一步的dp值仍为初始值Integer.MAX_VALUE,也应continue;

    都满足条件时,dp选择当前dp值与上一步dp值加一后的最小值,dp[i]=Math.min(dp[i],1+dp[i-coins[j]] );

    ③如果无法组成amount这个钱数,就返回-1,否则返回dp[amount].

    public int coinChange(int[] coins, int amount) {
            int[] dp= new int[amount+1];
            for(int i=0;i<=amount;i++){
                dp[i]=Integer.MAX_VALUE;
            }
            dp[0]=0;
            for(int i=1;i<=amount;i++){
                for(int j=0;j<coins.length;j++){
                    if(i-coins[j]<0 ||dp[i-coins[j]]==Integer.MAX_VALUE) continue;
                    dp[i]=Math.min(dp[i],1+dp[i-coins[j]] );
                }
            }
            return dp[amount]==Integer.MAX_VALUE?-1:dp[amount];
        }

    解法二: 递归 :当前组成amount所需的硬币数,与上一步有关.假设我们已经找到了能组成amount的最少硬币数,那么最后一步,我们可以选择任意的一个硬币,加入这个硬币之前,组成的金钱数为r,这时,r = amount-coins[i](需要循环所有的coins)。依次向前推,直到r等于0或者小于0.

    public int coinChange(int[] coins, int amount) {
            if (amount < 0)
                return 0;
            return coinChangeCore(coins, amount, new int[amount]);
        }

        private int coinChangeCore(int[] coins, int amount, int[] count) {
            if (amount < 0)
                return -1;
            if (amount == 0)
                return 0;
            //剪枝
            if (count[amount - 1] != 0)
                return count[amount - 1];
            int min = Integer.MAX_VALUE;
            for (int i = 0; i < coins.length; i++) {
                int ans = coinChangeCore(coins, amount - coins[i], count);
                if (ans >= 0 && ans < min) {
                    min = 1 + ans;
                }
            }
            count[amount - 1] = (min == Integer.MAX_VALUE) ? -1 : min;
            return count[amount - 1];
        }
  • 相关阅读:
    UE4中集成ProtoBuf
    QT之打印 QPrinter
    qt界面嵌入外部进程界面
    QAxWidget 妙用
    UE4嵌入Qt5 三维可视化案例
    QSS入门(一)
    Docker与k8s的恩怨情仇(四)-云原生时代的闭源落幕
    成品软件二次开发排第三,低代码的应用场景有哪些?
    React 并发功能体验-前端的并发模式已经到来。
    Docker与k8s的恩怨情仇(三)—后浪Docker来势汹汹
  • 原文地址:https://www.cnblogs.com/yumiaomiao/p/8445816.html
Copyright © 2020-2023  润新知