• Leetcode: 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.
    
    Note:
    You may assume that you have an infinite number of each kind of coin.

    DP:

     1 public class Solution {
     2     public int coinChange(int[] coins, int amount) {
     3         if (coins==null || coins.length==0 || amount<0) return -1;
     4         int[] res = new int[amount+1]; //res[i] is the fewest number of coins to make up amount i
     5         Arrays.fill(res, Integer.MAX_VALUE);
     6         res[0] = 0;
     7         for (int i=1; i<=amount; i++) {
     8             for (int j=0; j<coins.length; j++) {
     9                 if (i-coins[j] < 0) continue;
    10                 if (res[i-coins[j]] == Integer.MAX_VALUE) continue;
    11                 res[i] = Math.min(res[i], res[i-coins[j]]+1);
    12             }
    13         }
    14         return res[amount]==Integer.MAX_VALUE? -1 : res[amount];
    15     }
    16 }
  • 相关阅读:
    Python
    Python
    Jmeter 学习路线
    Git 学习路线
    数据库学习路线
    Linux 学习路线
    Gitlab(2)- centos7.x 下安装社区版 Gitlab 以及它的配置管理
    云原生学习路线(仅供参考)
    Python
    Python
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/5091565.html
Copyright © 2020-2023  润新知