-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_MaxDistanceBwTwoElements.cpp
56 lines (47 loc) · 1.02 KB
/
GFG_MaxDistanceBwTwoElements.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
/*
Max distance between same elements
https://practice.geeksforgeeks.org/problems/max-distance-between-same-elements/1#
*/
// { Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
// your task is to complete this function
int maxDistance(int a[], int n)
{
if(n==0) return 0;
unordered_map<int,int> um; // a[i], i lower bound
int max=0;
um[a[0]]=0;
for(int i=1; i<n; i++)
{
int d = 0;
if(um.find(a[i]) != um.end())
d = i - um[a[i]];
else
um[a[i]] = i;
if(max < d)
max = d;
}
return max;
}// maxDistance
};
// { Driver Code Starts.
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int arr[n];
for(int i=0; i<n; i++)
cin>>arr[i];
Solution ob;
cout<<ob.maxDistance(arr,n)<<endl;
}
return 0;
} // } Driver Code Ends