forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Find All Four Sum Numbers.cpp
81 lines (69 loc) · 2.07 KB
/
Find All Four Sum Numbers.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
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
Find All Four Sum Numbers
=========================
Given an array of integers and another number. Find all the unique quadruple from the given array that sums up to the given number.
Example 1:
Input:
N = 5, K = 3
A[] = {0,0,2,1,1}
Output: 0 0 1 2 $
Explanation: Sum of 0, 0, 1, 2 is equal
to K.
Example 2:
Input:
N = 7, K = 23
A[] = {10,2,3,4,5,7,8}
Output: 2 3 8 10 $2 4 7 10 $3 5 7 8 $
Explanation: Sum of 2, 3, 8, 10 = 23,
sum of 2, 4, 7, 10 = 23 and sum of 3,
5, 7, 8 = 23.
Your Task:
You don't need to read input or print anything. Your task is to complete the function fourSum() which takes the array arr[] and the integer k as its input and returns an array containing all the quadruples in a lexicographical manner. Also note that all the quadruples should be internally sorted, ie for any quadruple [q1, q2, q3, q4] the following should follow: q1 <= q2 <= q3 <= q4. (In the output each quadruple is separate by $. The printing is done by the driver's code)
Expected Time Complexity: O(N3).
Expected Auxiliary Space: O(N2).
Constraints:
1 <= N <= 100
-1000 <= K <= 1000
-100 <= A[] <= 100
*/
// User function template for C++
// arr[] : int input array of integers
// k : the quadruple sum required
vector<vector<int>> fourSum(vector<int> &arr, int target)
{
vector<vector<int>> ans;
set<vector<int>> s;
sort(arr.begin(), arr.end());
int n = arr.size();
for (int i = 0; i <= n - 4; i++)
{
for (int j = i + 1; j <= n - 3; j++)
{
int left = j + 1;
int right = n - 1;
while (left < right)
{
int sum = arr[i] + arr[j] + arr[left] + arr[right];
if (sum == target)
{
vector<int> temp;
temp.push_back(arr[i]);
temp.push_back(arr[j]);
temp.push_back(arr[left]);
temp.push_back(arr[right]);
left++;
right--;
s.insert(temp);
}
else if (sum < target)
left++;
else
right--;
}
}
}
set<vector<int>>::iterator itr;
for (itr = s.begin(); itr != s.end(); itr++)
ans.push_back(*itr);
return ans;
}