-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdsaArray18.cpp
More file actions
68 lines (60 loc) · 1.57 KB
/
Copy pathdsaArray18.cpp
File metadata and controls
68 lines (60 loc) · 1.57 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
61
62
63
64
65
66
67
68
//{ Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
vector <int> commonElements (int A[], int B[], int C[], int n1, int n2, int n3)
{
//code here.
vector<int>v;
int i=0,j=0,k=0;
while(i<n1 && j<n2 && k<n3){
if(A[i]==B[j] && B[j]==C[k]){
v.push_back(A[i]);
i++;
j++;
k++;
}
else if(A[i]<B[j]){
i++;
}
else if(B[j]<C[k]){
j++;
}
else k++;
int a=A[i-1];
while(A[i]==a) i++;
int b=B[j-1];
while(B[j]==b) j++;
int c=C[k-1];
while(C[k]==c) k++;
}
return v;
}
};
//{ Driver Code Starts.
int main ()
{
int t; cin >> t;
while (t--)
{
int n1, n2, n3;
cin >> n1 >> n2 >> n3;
int A[n1];
int B[n2];
int C[n3];
for (int i = 0; i < n1; i++) cin >> A[i];
for (int i = 0; i < n2; i++) cin >> B[i];
for (int i = 0; i < n3; i++) cin >> C[i];
Solution ob;
vector <int> res = ob.commonElements (A, B, C, n1, n2, n3);
if (res.size () == 0)
cout << -1;
for (int i = 0; i < res.size (); i++)
cout << res[i] << " ";
cout << endl;
}
}
// } Driver Code Ends