-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1590_make_sum_divisible_by_p.java
47 lines (39 loc) · 1.19 KB
/
1590_make_sum_divisible_by_p.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
/*
Problem : Make Sum Divisible by P
Inputs :-
- nums : array of positive integers
Output :-
- length of the smallest subarray otherwise -1
Preconditions :-
- remove the smallest subarray
- subarray is contiguous block of elements in the array
- smallest subarray could be empty
- sum of remaining elements should be divisible by p
- not allowed to remove the whole array
*/
import java.util.HashMap;
class Solution {
public int minSubarray(int[] nums, int p) {
int sum = 0;
for (int num : nums) {
sum = sum % p + num % p;
}
int target = sum % p;
if (target == 0) {
return 0;
}
HashMap<Integer, Integer> map = new HashMap<>(); // cumulative sum -> index
int curr = 0;
map.put(curr, -1);
int result = nums.length;
for (int j = 0; j < nums.length; j++) {
curr = (curr + nums[j]) % p;
if (map.containsKey((curr - target + p) % p)) {
int i = map.get((curr - target + p) % p);
result = Math.min(result, j - i);
}
map.put(curr, j);
}
return result == nums.length ? -1 : result;
}
}