zoukankan      html  css  js  c++  java
  • 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:

    Input: coins = [1, 2, 5], amount = 11
    Output: 3 
    Explanation: 11 = 5 + 5 + 1

    Example 2:

    Input: coins = [2], amount = 3
    Output: -1
    

    Note:
    You may assume that you have an infinite number of each kind of coin.

    解题思路:

    可以用dp来解

    dp[i]代表的是前数为i是可用来换的最少的硬币。

    因为题目中会给定coin的面值,所以我们需要对每一种面值进行尝试。

    因为我设定的初始值为-1, 所以我在更新dp时

     dp[i] = dp[i] == -1 ? dp[i-coins[j]]+1 : min(dp[i], dp[i-coins[j]]+1);

    代码:

    class Solution {
    public:
        int coinChange(vector<int>& coins, int amount) {
            vector<int> dp(amount+1, -1);
            sort(coins.begin(), coins.end());
            dp[0] = 0;
            for(int i = 1; i <= amount; i++){
                for(int j = 0; j < coins.size(); j++){
                    if(i - coins[j] > -1){
                        if(dp[i-coins[j]] != -1){
                            dp[i] = dp[i] == -1 ? dp[i-coins[j]]+1 : min(dp[i], dp[i-coins[j]]+1);
                        }    
                    }else{
                        break;
                    }
                }
            }
            return dp[amount];
        }
    };
  • 相关阅读:
    CSS 文本
    javascript:void(0)的问题
    剑指offer
    牛课--C/C++
    Linux学习--第二波
    面经-csdn
    初学Linux
    二分查找法的实现和应用汇总
    vs2013下git的使用
    win10+vs2013+Qt5.4 安装方法
  • 原文地址:https://www.cnblogs.com/yaoyudadudu/p/9197455.html
Copyright © 2011-2022 走看看