시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 (추가 시간 없음) 256 MB225425.000%

문제

Chiaki has an array of integers $a_1,a_2,\dots, a_n$. Chaiki can replace an element $a_x$ to another integer $y$. Let the resulting array be $b_1,b_2,\dots,b_n$, Chiaki would like to know the minimum value of $|a_x-y| + \sum\limits_{k=1}^{n} k \cdot c_k$, where $c_k$ is the number of distinct integers in $b_1,b_2,\dots,b_k$.

입력

There are multiple test cases. The first line of the input contains an integer $T$, indicating the number of test cases. For each test case:

The first line contains an integer $n$ ($1 \le n \le 10^6$) -- the length of the array.

The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10^9$).

It is guaranteed that the sum of $n$ in all test cases will not exceed $10^6$.

출력

For each test case, output an integer denoting the answer.

예제 입력 1

1
4
1 2 3 4

예제 출력 1

22