forked from szl0072/Leetcode-Solution-Code
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCoinChange.java
53 lines (45 loc) · 1.42 KB
/
CoinChange.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package leetcode;
import java.util.Arrays;
/**
* Project Name : Leetcode
* Package Name : leetcode
* File Name : CoinChange
* Creator : Edward
* Date : Jan, 2018
* Description : 322. Coin Change
*/
public class CoinChange {
/**
* ou 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:
coins = [1, 2, 5], amount = 11
return 3 (11 = 5 + 5 + 1)
Example 2:
coins = [2], amount = 3
return -1.
dp[] amount 需要多少coins
min = Math.min(min, dp[i - coins[j]] + 1);
* time : O(n*amount)
* space : O(amount)
* @param coins
* @param amount
* @return
*/
public int coinChange(int[] coins, int amount) {
if (amount == 0) return 0;
if (coins == null || coins.length == 0) return -1;
int[] dp = new int[amount + 1];
for (int i = 1; i <= amount; i++) {
int min = Integer.MAX_VALUE;
for (int j = 0; j < coins.length; j++) {
if (i >= coins[j] && dp[i - coins[j]] != -1) {
min = Math.min(min, dp[i - coins[j]] + 1);
}
}
dp[i] = min == Integer.MAX_VALUE ? -1 : min;
}
return dp[amount];
}
}