-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3sum.cpp
More file actions
49 lines (45 loc) · 1 KB
/
3sum.cpp
File metadata and controls
49 lines (45 loc) · 1 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
43
44
45
46
47
48
49
/*
Question:
3 Sum
Asked in:
Facebook
Amazon
Microsoft
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.
Assume that there will only be one solution
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)
*/
int Solution::threeSumClosest(vector<int> &A, int B) {
if(A.size()<3)
return 0;
sort(A.begin(),A.end());
int ans=INT_MAX;
int org=0;
for(int i=0;i<A.size()-2;i++)
{
int l=i+1,r=A.size()-1;
while(l<r)
{
int sum=A[i]+A[l]+A[r];
if(sum==B)
{
//cout<<A[i]<<" "<<A[l]<<" "<<A[r]<<endl;
return sum;
}
int dif=abs(B-sum);
if(ans>dif){
ans=dif;
org=sum;
}
if(sum>B)
r--;
else
l++;
}
}
return org;
}