Problem Description
You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money. Return 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. You may assume that you have an infinite number of each kind of coin.
Key Insights
- This is a classic dynamic programming problem where we need to find combinations of coins to achieve a specific amount.
- We can build a solution using a bottom-up dynamic programming approach, where we calculate the minimum coins needed for all amounts up to the target amount.
- The problem can also be approached using breadth-first search (BFS) to explore different combinations of coins.
Space and Time Complexity
Time Complexity: O(n * amount), where n is the number of different coin denominations.
Space Complexity: O(amount), for storing the minimum coins required for each amount.
Solution
The problem can be solved using dynamic programming by maintaining an array dp
where dp[i]
represents the minimum number of coins needed to make amount i
. We initialize this array with a value greater than any possible number of coins (like amount + 1), except for dp[0]
, which is set to 0 (since no coins are needed to make the amount 0). For each coin, we iterate through the dp
array and update the minimum coins needed for each amount.