SORTMAC - Sort Machine

no tags 

We have a sorting machine that works on a list of distinct numbers. This machine only has two instructions, named MOVEBACK and MOVEFRONT. Each instruction takes one element of the list as a parameter and removes that element from the list. MOVEBACK will then append that element to the end of the remaining list, while MOVEFRONT will insert it at the beginning.

For example, the sequence {8, 12, 25, 7, 15, 19} can be sorted in ascending order using 2 instructions:

  • MOVEFRONT 7, to get {7, 8, 12, 25, 15, 19}
  • MOVEBACK 25, to get {7, 8, 12, 15, 19, 25}

You will be given a list of distinct numbers. Compute the minimum number of instructions required to sort the list in ascending order.

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case starts with an integer N (1 ≤ N ≤ 50), denoting the number of elements. Next line consists N distinct elements. Each element will be between -1000 and 1000.

Output

For each case, print one line containing the answer to the problem.

Example

Input:
3
6
8 12 25 7 15 19
5
1 2 3 4 5
5
1 -10 -1 -8 4

Output:
2
0
3

hide comments
cjycjy: 2016-10-21 07:29:30

AC in one go :D Ideas came up in my mind at 2 a.m.


Added by:imranziad
Date:2016-03-24
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 GOSU JS-MONKEY
Resource:IAPC Round #1