#P1450F. The Struggling Contestant

    ID: 2770 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 9 Uploaded By: Tags>constructive algorithmsgreedy*2400

The Struggling Contestant

Description

To help those contestants who struggle a lot in contests, the headquarters of Codeforces are planning to introduce Division 5. In this new division, the tags of all problems will be announced prior to the round to help the contestants.

The contest consists of nn problems, where the tag of the ii-th problem is denoted by an integer aia_i.

You want to AK (solve all problems). To do that, you must solve the problems in some order. To make the contest funnier, you created extra limitations on yourself. You do not want to solve two problems consecutively with the same tag since it is boring. Also, you are afraid of big jumps in difficulties while solving them, so you want to minimize the number of times that you solve two problems consecutively that are not adjacent in the contest order.

Formally, your solve order can be described by a permutation pp of length nn. The cost of a permutation is defined as the number of indices ii (1i<n1\le i<n) where pi+1pi>1|p_{i+1}-p_i|>1. You have the requirement that apiapi+1a_{p_i}\ne a_{p_{i+1}} for all 1i<n1\le i< n.

You want to know the minimum possible cost of permutation that satisfies the requirement. If no permutations meet this requirement, you should report about it.

The first line contains a single integer tt (1t1041\leq t\leq 10^4) — the number of test cases.

The first line of the description of each test case contains a single integer nn (1n1051 \le n \le 10^5) — the number of problems in the contest.

The next line contains nn integers a1,a2,ana_1,a_2,\ldots a_n (1ain1 \le a_i \le n) — the tags of the problems.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5.

For each test case, if there are no permutations that satisfy the required condition, print 1-1. Otherwise, print the minimum possible cost of a permutation that satisfies the required condition.

Input

The first line contains a single integer tt (1t1041\leq t\leq 10^4) — the number of test cases.

The first line of the description of each test case contains a single integer nn (1n1051 \le n \le 10^5) — the number of problems in the contest.

The next line contains nn integers a1,a2,ana_1,a_2,\ldots a_n (1ain1 \le a_i \le n) — the tags of the problems.

It is guaranteed that the sum of nn over all test cases does not exceed 10510^5.

Output

For each test case, if there are no permutations that satisfy the required condition, print 1-1. Otherwise, print the minimum possible cost of a permutation that satisfies the required condition.

Sample Input 1

4
6
2 1 2 3 1 1
5
1 1 1 2 2
8
7 7 2 7 7 1 8 7
10
1 2 3 4 1 1 2 3 4 1

Sample Output 1

1
3
-1
2

Note

In the first test case, let p=[5,4,3,2,1,6]p=[5, 4, 3, 2, 1, 6]. The cost is 11 because we jump from p5=1p_5=1 to p6=6p_6=6, and 61>1|6-1|>1. This permutation is valid because we don't solve problems with the same tag twice in a row. We cannot find a permutation with a cost smaller than 11.

In the second test case, let p=[1,5,2,4,3]p=[1,5,2,4,3]. The cost is 33 because p2p1>1|p_2-p_1|>1, p3p2>1|p_3-p_2|>1, and p4p3>1|p_4-p_3|>1. The permutation is valid because we don't solve problems with the same tag twice in a row. We cannot find a permutation with a cost smaller than 33.

In the third test case, for any order of solving the problems, we will solve two problems with the same tag consecutively, so the answer is 1-1.