Sequence Sorting CodeForces - 1223D(思维)
You are given a sequence a1,a2,…,ana1,a2,…,an, consisting of integers.
You can apply the following operation to this sequence: choose some integer xx and move all elements equal to xx either to the beginning, or to the end of aa. Note that you have to move all these elements in one direction in one operation.
For example, if a=[2,1,3,1,1,3,2]a=[2,1,3,1,1,3,2], you can get the following sequences in one operation (for convenience, denote elements equal to xx as xx-elements):
[1,1,1,2,3,3,2][1,1,1,2,3,3,2] if you move all 11-elements to the beginning;
[2,3,3,2,1,1,1][2,3,3,2,1,1,1] if you move all 11-elements to the end;
[2,2,1,3,1,1,3][2,2,1,3,1,1,3] if you move all 22-elements to the beginning;
[1,3,1,1,3,2,2][1,3,1,1,3,2,2] if you move all 22-elements to the end;
[3,3,2,1,1,1,2][3,3,2,1,1,1,2] if you move all 33-elements to the beginning;
[2,1,1,1,2,3,3][2,1,1,1,2,3,3] if you move all 33-elements to the end;
You have to determine the minimum number of such operations so that the sequence aa becomes sorted in non-descending order. Non-descending order means that for all ii from 22 to nn, the condition ai?1≤aiai?1≤ai is satisfied.
Note that you have to answer qq independent queries.
Input
The first line contains one integer qq (1≤q≤3?1051≤q≤3?105) — the number of the queries. Each query is represented by two consecutive lines.
The first line of each query contains one integer nn (1≤n≤3?1051≤n≤3?105) — the number of elements.
The second line of each query contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤n1≤ai≤n) — the elements.
It is guaranteed that the sum of all nn does not exceed 3?1053?105.
Output
For each query print one integer — the minimum number of operation for sorting sequence aa in non-descending order.
Example
Input
3
7
3 1 6 6 3 1 1
8
1 1 4 4 4 7 8 8
7
4 2 5 2 6 2 7
Output
2
0
1
Note
In the first query, you can move all 11-elements to the beginning (after that sequence turn into [1,1,1,3,6,6,3][1,1,1,3,6,6,3]) and then move all 66-elements to the end.
In the second query, the sequence is sorted initially, so the answer is zero.
In the third query, you have to move all 22-elements to the beginning.
題意:可以將一種數(shù)字移到最左端或者最右端,問最少可以移動多少次。
思路:我們可以確定下來一些數(shù)不需要移動,用數(shù)的總數(shù)減去不需要移動的就是需要移動的。
對于每個數(shù),我們將它最初出現(xiàn)的位置和最后出現(xiàn)的位置記錄下來。然后遍歷1~n(因為a[i]是屬于1 ~n的)。具體解釋看代碼。
代碼如下:
努力加油a啊,(o)/~
總結
以上是生活随笔為你收集整理的Sequence Sorting CodeForces - 1223D(思维)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 千万别用树套树(线段树)
- 下一篇: Treasure Island Code