-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0016_threeSumClosest.cc
73 lines (64 loc) · 1.12 KB
/
Problem_0016_threeSumClosest.cc
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <algorithm>
#include <cmath>
#include <iostream>
#include <vector>
#include "UnitTest.h"
using namespace std;
class Solution
{
public:
int threeSumClosest(vector<int> &nums, int target)
{
int n = nums.size();
int ans = 1e9;
std::sort(nums.begin(), nums.end());
auto update = [&](int cur)
{
if (std::abs(cur - target) < std::abs(ans - target))
{
ans = cur;
}
};
for (int i = 0; i < n; i++)
{
if (i > 0 && nums[i - 1] == nums[i])
{
continue;
}
int L = i + 1;
int R = n - 1;
while (L < R)
{
int sum = nums[i] + nums[L] + nums[R];
update(sum);
if (sum < target)
{
L++;
}
else if (sum > target)
{
R--;
}
else
{
return sum;
}
}
}
return ans;
}
};
void test()
{
Solution s;
vector<int> n1 = {-1, 2, 1, -4};
vector<int> n2 = {0, 0, 0};
EXPECT_EQ_INT(2, s.threeSumClosest(n1, 1));
EXPECT_EQ_INT(0, s.threeSumClosest(n2, 1));
EXPECT_SUMMARY;
}
int main()
{
test();
return 0;
}