-
Notifications
You must be signed in to change notification settings - Fork 0
/
16.3-sum-closest.cpp
69 lines (67 loc) · 1.61 KB
/
16.3-sum-closest.cpp
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
/*
* @lc app=leetcode id=16 lang=cpp
*
* [16] 3Sum Closest
*
* https://leetcode.com/problems/3sum-closest/description/
*
* algorithms
* Medium (46.22%)
* Likes: 2979
* Dislikes: 167
* Total Accepted: 561.2K
* Total Submissions: 1.2M
* Testcase Example: '[-1,2,1,-4]\n1'
*
* 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 1:
*
*
* Input: nums = [-1,2,1,-4], target = 1
* Output: 2
* Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 =
* 2).
*
*
*
* Constraints:
*
*
* 3 <= nums.length <= 10^3
* -10^3 <= nums[i] <= 10^3
* -10^4 <= target <= 10^4
*
*
*/
// @lc code=start
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target) {
sort(nums.begin(), nums.end());
int minDiff = INT_MAX;
int n = nums.size() - 2;
int res = 0;;
for (int i = 0; i < n; ++i) {
int left = i + 1, right = nums.size() - 1;
while (left < right) {
int sum = nums[i] + nums[left] + nums[right];
if (sum == target)
return sum;
if (minDiff > abs(sum - target)) {
minDiff = abs(sum - target);
res = sum;
}
if (sum > target)
--right;
else
++left;
}
}
return res;
}
};
// @lc code=end