-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSumOfThree.java
56 lines (49 loc) · 1.7 KB
/
SumOfThree.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
48
49
50
51
52
53
54
55
56
package by.andd3dfx.numeric;
import lombok.Builder;
import lombok.Getter;
import java.util.Arrays;
/**
* <pre>
* Даны массивы a[], b[], c[] и число N.
* Найти такие индексы i,j,k, что выполняется условие: a[i] + b[j] + c[k] == N
* </pre>
*
* @see <a href="https://youtu.be/P-2jXiQ1OFo">Video solution</a>
*/
public class SumOfThree {
public static SearchResult find_N3(int[] a, int[] b, int[] c, int N) {
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < b.length; j++) {
for (int k = 0; k < c.length; k++) {
if (a[i] + b[j] + c[k] == N) {
return SearchResult.builder()
.exists(true)
.indexes(new int[]{i, j, k})
.build();
}
}
}
}
return SearchResult.builder().build();
}
public static SearchResult find_N2logN(int[] a, int[] b, int[] c, int N) {
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < b.length; j++) {
int k = Arrays.binarySearch(c, N - a[i] - b[j]);
if (k >= 0) {
return SearchResult.builder()
.exists(true)
.indexes(new int[]{i, j, k})
.build();
}
}
}
return SearchResult.builder().build();
}
@Getter
@Builder
public static class SearchResult {
private boolean exists;
private int[] indexes;
}
}