mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
problems: add combination sum IV
Signed-off-by: Matej Focko <mfocko@redhat.com>
This commit is contained in:
parent
aad7d85fd2
commit
9dc591147a
1 changed files with 35 additions and 0 deletions
35
problems/combination-sum-iv.java
Normal file
35
problems/combination-sum-iv.java
Normal file
|
@ -0,0 +1,35 @@
|
|||
import java.util.TreeMap;
|
||||
|
||||
class Solution {
|
||||
private TreeMap<Integer, Integer> cache;
|
||||
|
||||
private int combinationSumRec(int[] nums, int target) {
|
||||
if (target < 0) {
|
||||
// Base: Target is below zero
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (target == 0) {
|
||||
// Base: We have found a possible combination
|
||||
return 1;
|
||||
}
|
||||
|
||||
if (cache.containsKey(target)) {
|
||||
// Base: Target is already precomputed
|
||||
return cache.get(target);
|
||||
}
|
||||
|
||||
int combinations = 0;
|
||||
for (int num : nums) {
|
||||
combinations += combinationSumRec(nums, target - num);
|
||||
}
|
||||
|
||||
cache.put(target, combinations);
|
||||
return combinations;
|
||||
}
|
||||
|
||||
public int combinationSum4(int[] nums, int target) {
|
||||
cache = new TreeMap<>();
|
||||
return combinationSumRec(nums, target);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue