-
Notifications
You must be signed in to change notification settings - Fork 0
/
C.cpp
47 lines (44 loc) · 831 Bytes
/
C.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
#include<bits/stdc++.h>
using namespace std;
#define fastio ios::sync_with_stdio(0);cin.tie(0)
long long ara[200005];
int main()
{
fastio;
long long t,n,i,st,en;
cin>>t;
while(t--)
{
cin>>n;
for(i=0;i<n;i++)
{
cin>>ara[i];
}
st=0;
en=0;
for(i=0;i<n;i++)
{
if(ara[i]==ara[0])
st++;
else
break;
}
for(i=n-1;i>=0;i--)
{
if(ara[i]==ara[n-1])
en++;
else
break;
}
if(ara[0]==ara[n-1])
{
if(st==n)
cout<<0<<"\n";
else
cout<<n-(st+en)<<"\n";
}
else
cout<<n-max(st,en)<<"\n";
}
return 0;
}