Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution.
For example, given array S = {-1 2 1 -4}, and target = 1.
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
** 解题思路 **
Similar to 3 Sum problem, use 3 pointers to point current element, next element and the last element.
If the sum is less than target, it means we have to add a larger element so next element move to the next. If the sum is greater, it means we have to add a smaller element so last element move to the second last element. Keep doing this until the end.
Each time compare the difference between sum and target, if it is less than minimum difference so far, then replace result with it, otherwise keep iterating.
/* test cases:
[1,1,1,0] 100 => 3
[1,1,1,0] -100 => 2
*/
public int threeSumClosest(int[] nums, int target) {
int res = nums[0] + nums[1] + nums[nums.length - 1];
Arrays.sort(nums);
for (int i = 0; i < nums.length - 2; i++) {
int start = i + 1, end = nums.length - 1;
while (start < end) {
int sum = nums[i] + nums[start] + nums[end];
if (sum > target) {
end--;
} else if (sum < target) {
start++;
} else {
return sum;
}
if (Math.abs(sum -target) < Math.abs(res- target)){
res = sum;
}
}
}
return res;
}
网友评论