Given an array nums
of n integers and an integer target
, find three integers in nums
such that the sum is closest to target
. Return the sum of the three integers. You may assume that each input would have exactly one solution.
Example:
Given array nums = [-1, 2, 1, -4], and target = 1.
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
Solution:
Two pointer
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target) {
sort(nums.begin(), nums.end());
int ans;
int cur = INT_MAX;
for(int i = 0;i < nums.size(); i++){
int l = i+1, r = nums.size()-1;
while(l<r){
int sum = nums[l]+nums[r]+nums[i];
if(abs(sum-target) < cur){
cur = abs(sum-target);
ans = sum;
}
if(sum < target){
l++;
}
else if(sum > target){
r--;
}
else{
return sum;
}
}
}
return ans;
}
};