> For the complete documentation index, see [llms.txt](https://protegejj.gitbook.io/oj-practices/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://protegejj.gitbook.io/oj-practices/chapter1/dynamic-programming/knapsack-problem/322-coin-change.md).

# 322 Coin Change

## 322. [Coin Change](https://leetcode.com/problems/coin-change/description/)

## 1. Question

You are given coins of different denominations and a total amount of moneyamount. 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.

## 2. Implementation

**(1) DP**

思路: dp\[i]表示数量为i所需要的coin个数，初始化dp\[0] = 0， 状态方程为dp\[i] = Math.min(dp\[i], dp\[i - coins\[j]]), where i >= coins\[j]

```java
class Solution {
    public int coinChange(int[] coins, int amount) {
        int max = amount + 1;
        int[] dp = new int[amount + 1];
        Arrays.fill(dp, max);
        dp[0] = 0;

        for (int i = 0; i <= amount; i++) {
            for (int j = 0; j < coins.length; j++) {
                if (coins[j] <= i) {
                    dp[i] = Math.min(dp[i], dp[i - coins[j]] + 1);
                }
            }
        }
        return dp[amount] == max ? -1 : dp[amount];
    }
}
```

## 3. Time & Space Complexity

时间复杂度O(n \* amount), 空间复杂度O(amount)
