給定一個有n個整數的數組S,找出S中3個數,使其和等於一個給定的數,target。
返回這3個數的和,你可以假定每個輸入都有且只有一個結果。
例如,給定S = {-1 2 1 -4},和target = 1。
那麼最接近target的和是2。(-1 + 2 + 1 = 2)。
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.
You may assume that each input would have exactly one solution.
For 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).
也許我已經開始體會到上一題中別人寫的方法的思想了。
在這個題目中,我們要做以下幾件事:
用
求出長度
始終保證
計算索引為
更小:如果距離小於
如果相等,那麼要記得將
隨後為了避免計算重復的數字,用三個
class Solution
{
public:
int threeSumClosest(vector& nums, int target) {
sort(nums.begin(), nums.end());
int len = nums.size();
int result = INT_MAX, close = INT_MAX;
for (int current = 0; current < len - 2; current++) {
int front = current + 1, back = len - 1;
while (front < back) {
int sum = nums[current] + nums[front] + nums[back];
if (sum < target) {
if (target - sum < close) {
close = target - sum;
result = sum;
}
front++;
}
else if (sum > target) {
if (sum - target < close) {
close = sum - target;
result = sum;
}
back--;
}
else {
close = 0;
result = target;
do {
front++;
} while (front < back&&nums[front - 1] == nums[front]);
do {
back--;
} while (front < back&&nums[back + 1] == nums[back]);
}
}
while (current < len - 2 && nums[current + 1] == nums[current]) {
current++;
}
}
return result;
}
};
和本道題關聯密切的題目推薦:
傳送門:LeetCode 15 3Sum(3個數的和)
傳送門:LeetCode 18 4Sum(4個數的和)