#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll mex1(ll a[],ll n,set<ll>s)
{
ll mex;
for(ll i=0;i<=1000000000;i++)
{
if(s.count(i)==0)
{
mex=i;
break;
}
}
return mex;
}
int main()
{
cin.tie(0) -> sync_with_stdio(0);
int T;
cin>>T;
while(T--)
{
ll n,mex,f=0;
cin>>n;
ll a[n],max=-1;
set<ll> s1,s2;
map<ll,ll> first,last,count;
for(ll i=0;i<n;i++)
{
cin>>a[i];
s1.insert(a[i]);
if(first[a[i]]==0) first[a[i]]=i+1;
last[a[i]]=i+1;
count[a[i]]++;
if(a[i]>max) max=a[i];
}
mex=mex1(a,n,s1);
if(mex==0) cout<<"YES\n";
else if(s1.count(mex+1)==0)
{
ll q=0;
for(ll i=0;i<mex;i++)
{
if(count[i]>1)
{
q++;
break;
}
}
if(max>mex) q++;
if(q==0) cout<<"NO\n";
else cout<<"YES\n";
}
else
{
//cout<<first[mex+1]<<" "<<last[mex+1]<<"\n";
for(ll i=0;i<n;i++)
{
if(i>=first[mex+1]-1 && i<=last[mex+1]-1) a[i]=mex;
s2.insert(a[i]);
}
if(mex1(a,n,s2)==mex+1) cout<<"YES\n";
else cout<<"NO\n";
}
}
return 0;
}
1465. Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts | 501A - Contest |
160A- Twins | 752. Open the Lock |
1535A - Fair Playoff | 1538F - Interesting Function |
1920. Build Array from Permutation | 494. Target Sum |
797. All Paths From Source to Target | 1547B - Alphabetical Strings |
1550A - Find The Array | 118B - Present from Lena |
27A - Next Test | 785. Is Graph Bipartite |
90. Subsets II | 1560A - Dislike of Threes |
36. Valid Sudoku | 557. Reverse Words in a String III |
566. Reshape the Matrix | 167. Two Sum II - Input array is sorted |
387. First Unique Character in a String | 383. Ransom Note |
242. Valid Anagram | 141. Linked List Cycle |
21. Merge Two Sorted Lists | 203. Remove Linked List Elements |
733. Flood Fill | 206. Reverse Linked List |
83. Remove Duplicates from Sorted List | 116. Populating Next Right Pointers in Each Node |