#P9673. [ICPC 2022 Jinan R] Quick Sort
[ICPC 2022 Jinan R] Quick Sort
题目描述
When Prof. Pang was young, he wrote the following code for quick sort. Please calculate how many swaps are performed when calling . is a given permutation with length .

输入格式
The first line contains one integer , the number of test cases.
For each test case, the first line contains one positive integer . The next line contains integers denoting the permutation . It is guaranteed that form a permutation, i.e.~ for .
It is guaranteed that the sum of over all test cases is no more than .
输出格式
For each test case, output one line containing the number of swaps performed when calling .
3
3
3 2 1
5
2 4 5 3 1
10
7 2 4 6 1 9 10 8 5 3
1
4
7