forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths0016_3sum_closest.rs
76 lines (69 loc) · 2.11 KB
/
s0016_3sum_closest.rs
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
74
75
76
/**
* [16] 3Sum Closest
*
* 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).
*
*
*/
pub struct Solution {}
// problem: https://leetcode.com/problems/3sum-closest/
// discuss: https://leetcode.com/problems/3sum-closest/discuss/?currentPage=1&orderBy=most_votes&query=
// submission codes start here
impl Solution {
pub fn three_sum_closest(nums: Vec<i32>, target: i32) -> i32 {
let mut nums = nums;
let mut min_distance: i32 = i32::max_value();
nums.sort();
let mut i = 0;
while i < nums.len() - 2 {
let sub_min = Solution::two_sum_closest(&nums[(i + 1)..nums.len()], target - nums[i]);
if sub_min.abs() < min_distance.abs() {
min_distance = sub_min;
if min_distance == 0 {
break;
}
}
i += 1;
}
target + min_distance
}
pub fn two_sum_closest(nums: &[i32], target: i32) -> i32 {
let (mut i, mut j) = (0_usize, nums.len() - 1);
let mut local_min = i32::max_value();
while i < j {
let sum = nums[i] + nums[j];
if sum > target {
j -= 1;
} else if sum < target {
i += 1;
} else {
return 0;
}
if (sum - target).abs() < local_min.abs() {
local_min = sum - target
}
}
local_min
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_16() {
assert_eq!(Solution::three_sum_closest(vec![-1, 2, 1, -4], 1), 2);
assert_eq!(Solution::three_sum_closest(vec![1, 2, 3], 1), 6);
assert_eq!(
Solution::three_sum_closest(vec![1, 2, 4, 8, 16, 32, 64, 128], 82),
82
);
}
}