LeetCode 0322. Coin Change Solution in Java, Python, C++, JavaScript, Go & Rust | Explanation + Code

CoderIndeed
0
0322. Coin Change

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.

 

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

Example 3:

Input: coins = [1], amount = 0
Output: 0

 

Constraints:

  • 1 <= coins.length <= 12
  • 1 <= coins[i] <= 231 - 1
  • 0 <= amount <= 104

Solutions

Solution 1: Dynamic Programming (Complete Knapsack)

We define f[i][j] as the minimum number of coins needed to make up the amount j using the first i types of coins. Initially, f[0][0] = 0, and the values of other positions are all positive infinity.

We can enumerate the quantity k of the last coin used, then we have:

$$ f[i][j] = \min(f[i - 1][j], f[i - 1][j - x] + 1, \cdots, f[i - 1][j - k \times x] + k) $$

where x represents the face value of the i-th type of coin.

Let j = j - x, then we have:

$$ f[i][j - x] = \min(f[i - 1][j - x], f[i - 1][j - 2 \times x] + 1, \cdots, f[i - 1][j - k \times x] + k - 1) $$

Substituting the second equation into the first one, we can get the following state transition equation:

$$ f[i][j] = \min(f[i - 1][j], f[i][j - x] + 1) $$

The final answer is f[m][n].

The time complexity is O(m × n), and the space complexity is O(m × n). Where m and n are the number of types of coins and the total amount, respectively.

We notice that f[i][j] is only related to f[i - 1][j] and f[i][j - x]. Therefore, we can optimize the two-dimensional array into a one-dimensional array, reducing the space complexity to O(n).

Similar problems:

PythonJavaC++GoTypeScriptRustJavaScriptPythonJavaC++GoTypeScriptJavaScript
class Solution: def coinChange(self, coins: List[int], amount: int) -> int: m, n = len(coins), amount f = [[inf] * (n + 1) for _ in range(m + 1)] f[0][0] = 0 for i, x in enumerate(coins, 1): for j in range(n + 1): f[i][j] = f[i - 1][j] if j >= x: f[i][j] = min(f[i][j], f[i][j - x] + 1) return -1 if f[m][n] >= inf else f[m][n](code-box)

Post a Comment

0Comments

Post a Comment (0)

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Check Now
Accept !