forked from iiitv/algos
-
Notifications
You must be signed in to change notification settings - Fork 2
/
CoinChange.java
37 lines (36 loc) · 1.12 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
/*
* Implementation of famous dynamic programming problem
* that aims to find out the maximum number of ways in
* which a value can be achieved using some fixed valued
* coins.
*
* In the implementation, the time complexity is O(mn)
* and extra space required is O(n).
*/
import java.util.Arrays;
/*
* coin: Array containing value of coins
* n: Value to find the change for
*/
public class CoinChange {
public static int coinChangeProblem(int[] C, int n) {
int[] possibilities = new int[n+1];
Arrays.fill(possibilities, 0);
possibilities[0] = 1;
// Build the possibilities table in bottom-up manner
// For all coins,
// Update array if the current coin is capable of
// incrementing the possibility
for (int i = 0; i < C.length; i++){
for (int j = C[i]; j <= n; j++){
possibilities[j] += possibilities[j - C[i]];
}
}
return possibilities[n];
}
public static void main(String[] args) {
int[] coin = {2, 5, 3, 6};
int n = 10;
System.out.println(coinChangeProblem(coin, n));
}
}