- Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1010.java
47 lines (44 loc) · 1.51 KB
/
_1010.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
packagecom.fishercoder.solutions.secondthousand;
importjava.util.HashMap;
importjava.util.Map;
publicclass_1010 {
publicstaticclassSolution1 {
/*
* Credit: https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/discuss/256726/Java-O(n)-code-w-comment-similar-to-Two-Sum
* <p>
* Think of Problem 1: Two Sum
* Assume target is 60, each item in time % 60.
* Then this problem becomes very similar to Problem 1.
*/
publicintnumPairsDivisibleBy60(int[] time) {
intresult = 0;
Map<Integer, Integer> map = newHashMap<>();
for (intt : time) {
intd = (60 - t % 60) % 60;
if (map.containsKey(d)) {
result += map.get(d);
}
map.put(t % 60, map.getOrDefault(t % 60, 0) + 1);
}
returnresult;
}
}
publicstaticclassSolution2 {
/*
* credit: https://leetcode.com/problems/pairs-of-songs-with-total-durations-divisible-by-60/solution/
*/
publicintnumPairsDivisibleBy60(int[] time) {
int[] remainders = newint[60];
intans = 0;
for (intt : time) {
if (t % 60 == 0) {
ans += remainders[0];
} else {
ans += remainders[60 - t % 60];
}
remainders[t % 60]++;
}
returnans;
}
}
}