-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path3sum closest
More file actions
42 lines (35 loc) · 1.11 KB
/
3sum closest
File metadata and controls
42 lines (35 loc) · 1.11 KB
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
/*
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).
*/
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target) {
vector<vector<int>> v;
int n=nums.size();
sort(nums.begin(), nums.end());
// if(n<3) return v;
int min = INT_MAX,res=0;
for(int i=0; i<n;i++)
{
int left=i+1;
int right=n-1;
while(left<right)
{
int s=nums[i]+nums[left]+nums[right];
if(abs(target-s) == 0) return s;
if(abs(target-s) < min)
{
min=abs(target-s);
res=s;
}
if(s<target) ++left;
else --right;
}
}
return res;
}
};