forked from lemonbashar/interviews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoinChange.java
More file actions
45 lines (37 loc) · 1.29 KB
/
CoinChange.java
File metadata and controls
45 lines (37 loc) · 1.29 KB
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
//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:
//coins = [1, 2, 5], amount = 11
//return 3 (11 = 5 + 5 + 1)
//Example 2:
//coins = [2], amount = 3
//return -1.
//Note:
//You may assume that you have an infinite number of each kind of coin.
class CoinChange {
public int coinChange(int[] coins, int amount) {
if(amount < 1) {
return 0;
}
return coinChangeRecursive(coins, amount, new int[amount]);
}
public int coinChangeRecursive(int[] coins, int amount, int[] dp) {
if(amount < 0) {
return -1;
}
if(amount == 0) {
return 0;
}
if(dp[amount - 1] != 0) {
return dp[amount - 1];
}
int min = Integer.MAX_VALUE;
for(int coin: coins) {
int result = coinChangeRecursive(coins, amount - coin, dp);
if(result >= 0 && result < min) {
min = 1 + result;
}
}
dp[amount - 1] = min == Integer.MAX_VALUE ? -1 : min;
return dp[amount - 1];
}
}