-
Notifications
You must be signed in to change notification settings - Fork 12
/
259. 3Sum Smaller.cpp
65 lines (49 loc) · 1.22 KB
/
259. 3Sum Smaller.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
/*
Link: https://leetcode.com/problems/paint-house/
Given an array of n integers nums and an integer target, find the number of index triplets i, j, k with 0 <= i < j < k < n that satisfy the condition nums[i] + nums[j] + nums[k] < target.
Example 1:
Input: nums = [-2,0,1,3], target = 2
Output: 2
Explanation: Because there are two triplets which sums are less than 2:
[-2,0,1]
[-2,0,3]
Example 2:
Input: nums = [], target = 0
Output: 0
Example 3:
Input: nums = [0], target = 0
Output: 0
Constraints:
n == nums.length
0 <= n <= 3500
-100 <= nums[i] <= 100
-100 <= target <= 100
*/
// solved by Milon
class Solution {
public:
int threeSumSmaller(vector<int>& nums, int target) {
int n = nums.size();
if (n < 3)
return 0;
sort(nums.begin(), nums.end());
int ans = 0;
for (int i = 0; i < n; i++) {
int k = n - 1;
for (int j = i + 1; j < n; j++) {
int need = target - nums[i] - nums[j];
while (k > j && nums[k] >= need) {
k--;
}
if (k <= j)
break;
ans += (k - j);
}
}
return ans;
}
};
/*
[-2,0,1,3]
2
*/