322. Coin Change (Medium)

https://leetcode.com/problems/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.

Solutions

class Solution {

    // The typical dynamic programming problem.

    public int coinChange(int[] coins, int amount) {
        if(coins == null || coins.length == 0) {
            return -1;
        }

        if(amount == 0) {
            return 0;
        }

        int[] track = new int[amount + 1];

        // Actually, any values that larger than amount can initialize the array.
        Arrays.fill(track, amount + 1);

        track[0] = 0;
        for (int i = 1; i <= amount; i++) {

            // to get the coins in the sum of i, try different coins
            for (int c: coins) {
                if (c > i) {
                    continue;
                }

                track[i] = Math.min(track[i], track[i - c] + 1);
            }
        }

        return track[amount] > amount ? -1 : track[amount];
    }
}

Incorrect Solutions

References

Copyright © iovi.com 2017 all right reserved,powered by GitbookLast Modification: 2020-03-21 23:48:56

results matching ""

    No results matching ""