forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1099.java
47 lines (44 loc) · 1.33 KB
/
_1099.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
package com.fishercoder.solutions;
import java.util.Arrays;
public class _1099 {
public static class Solution1 {
/**
* Time: O(n^2)
* Space: O(1)
*/
public int twoSumLessThanK(int[] nums, int k) {
int maxSum = Integer.MIN_VALUE;
for (int i = 0; i < nums.length - 1; i++) {
for (int j = i + 1; j < nums.length; j++) {
if (nums[i] + nums[j] < k) {
maxSum = Math.max(maxSum, nums[i] + nums[j]);
}
}
}
return maxSum == Integer.MIN_VALUE ? -1 : maxSum;
}
}
public static class Solution2 {
/**
* Time: O(nlogn)
* Space: O(1)
*/
public int twoSumLessThanK(int[] nums, int k) {
Arrays.sort(nums);
int left = 0;
int right = nums.length - 1;
int sum = Integer.MIN_VALUE;
while (left < right) {
int newSum = nums[left] + nums[right];
if (newSum < k && newSum > sum) {
sum = newSum;
} else if (newSum >= k) {
right--;
} else {
left++;
}
}
return sum == Integer.MIN_VALUE ? -1 : sum;
}
}
}