-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3Sum_Smaller.cpp
More file actions
61 lines (47 loc) · 1.29 KB
/
Copy path3Sum_Smaller.cpp
File metadata and controls
61 lines (47 loc) · 1.29 KB
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
/*
259. 3Sum Smaller
Medium
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.
Follow up: Could you solve it in O(n2) runtime?
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 <= 300
-100 <= nums[i] <= 100
-100 <= target <= 100
*/
class Solution {
public:
int threeSumSmaller(vector<int>& nums, int target) {
if(nums.size()<3) return 0;
sort(nums.begin(),nums.end());
int c=0,f=0;
for(int i=0;i<nums.size()-2;i++){
int l = i+1;
int r = nums.size()-1;
while(l<r){
int sum = target-nums[i];
if(nums[l]+nums[r]<sum){
c+=(r-l);//accomodating all combinations with sum<target between start and end
l++;
}
if(nums[l]+nums[r]>=sum)
{
r--;
}
}
}
return c;
}
};