CF1714B.Remove Prefix
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp was presented with some sequence of integers a of length n ( 1≤ai≤n ). A sequence can make Polycarp happy only if it consists of different numbers (i.e. distinct numbers).
In order to make his sequence like this, Polycarp is going to make some (possibly zero) number of moves.
In one move, he can:
- remove the first (leftmost) element of the sequence.
For example, in one move, the sequence [3,1,4,3] will produce the sequence [1,4,3] , which consists of different numbers.
Determine the minimum number of moves he needs to make so that in the remaining sequence all elements are different. In other words, find the length of the smallest prefix of the given sequence a , after removing which all values in the sequence will be unique.
输入格式
The first line of the input contains a single integer t ( 1≤t≤104 ) — the number of test cases.
Each test case consists of two lines.
The first line contains an integer n ( 1≤n≤2⋅105 ) — the length of the given sequence a .
The second line contains n integers a1,a2,…,an ( 1≤ai≤n ) — elements of the given sequence a .
It is guaranteed that the sum of n values over all test cases does not exceed 2⋅105 .
输出格式
For each test case print your answer on a separate line — the minimum number of elements that must be removed from the beginning of the sequence so that all remaining elements are different.
输入输出样例
输入#1
5 4 3 1 4 3 5 1 1 1 1 1 1 1 6 6 5 4 3 2 1 7 1 2 1 7 1 2 1
输出#1
1 4 0 0 5
说明/提示
The following are the sequences that will remain after the removal of prefixes:
- [1,4,3] ;
- [1] ;
- [1] ;
- [6,5,4,3,2,1] ;
- [2,1] .
It is easy to see that all the remaining sequences contain only distinct elements. In each test case, the shortest matching prefix was removed.