-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort_zero.cpp
54 lines (54 loc) · 1.02 KB
/
sort_zero.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
#include <bits/stdc++.h>
using namespace std;
int oper(vector<int>& v, vector<int>& s, int index)
{
int c=0;
for(int i=index; i>=0; i--)
{
if(s[v[i]]>0)
{
c++;
s[v[i]]=0;
}
}
return c;
}
int main()
{
int cases;
cin>>cases;
for(int i=0;i<cases;i++)
{
int n;
cin>>n;
vector<int> v;
vector<int> s(n+1, 0);
for(int j=0;j<n;j++)
{
int a;
cin>>a;
v.push_back(a);
s[a]++;
}
int counter=0;
for(int j=n-1; j>0; j--)
{
if(s[v[j]] > 1 && v[j-1]!=v[j])
{
counter += oper(v,s,j);
break;
}
else if(s[v[j]]>1)
{
s[v[j]]--;
continue;
}
else if(v[j-1]>v[j])
{
counter += oper(v,s,j-1);
break;
}
}
cout<<counter<<endl;
}
}