308676: CF1556B. Take Your Places!

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Take Your Places!

题意翻译

多组数据,对于每组数据给定一个序列 $a$,每次操作交换序列 $a$ 中相邻的两个元素,问最少交换多少次能够使序列任意两个相邻的元素奇偶性不同。如果不可能则输出 `-1`。

题目描述

![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1556B/1e01fe272756235c22745e77349edf5747f912ab.png)William has an array of $ n $ integers $ a_1, a_2, \dots, a_n $ . In one move he can swap two neighboring items. Two items $ a_i $ and $ a_j $ are considered neighboring if the condition $ |i - j| = 1 $ is satisfied. William wants you to calculate the minimal number of swaps he would need to perform to make it so that the array does not contain two neighboring items with the same parity.

输入输出格式

输入格式


Each test contains multiple test cases. The first line contains the number of test cases $ t $ ( $ 1 \le t \le 10^4 $ ). Description of the test cases follows. The first line of each test case contains an integer $ n $ $ (1 \le n \le 10^5) $ which is the total number of items in William's array. The second line contains $ n $ integers $ a_1, a_2, \dots, a_n $ $ (1 \le a_i \le 10^9) $ which are William's array. It is guaranteed that the sum of $ n $ over all test cases does not exceed $ 10^5 $ .

输出格式


For each test case output the minimal number of operations needed or $ -1 $ if it is impossible to get the array to a state when no neighboring numbers have the same parity.

输入输出样例

输入样例 #1

5
3
6 6 1
1
9
6
1 1 1 2 2 2
2
8 6
6
6 2 3 4 5 1

输出样例 #1

1
0
3
-1
2

说明

In the first test case the following sequence of operations would satisfy the requirements: 1. swap(2, 3). Array after performing the operation: $ [6, 1, 6] $ In the second test case the array initially does not contain two neighboring items of the same parity. In the third test case the following sequence of operations would satisfy the requirements: 1. swap(3, 4). Array after performing the operation: $ [1, 1, 2, 1, 2, 2] $ 2. swap(2, 3). Array after performing the operation: $ [1, 2, 1, 1, 2, 2] $ 3. swap(4, 5). Array after performing the operation: $ [1, 2, 1, 2, 1, 2] $ In the fourth test case it is impossible to satisfy the requirements. In the fifth test case the following sequence of operations would satisfy the requirements: 1. swap(2, 3). Array after performing the operation: $ [6, 3, 2, 4, 5, 1] $ 2. swap(4, 5). Array after performing the operation: $ [6, 3, 2, 5, 4, 1] $

Input

题意翻译

多组数据,对于每组数据给定一个序列 $a$,每次操作交换序列 $a$ 中相邻的两个元素,问最少交换多少次能够使序列任意两个相邻的元素奇偶性不同。如果不可能则输出 `-1`。

加入题单

算法标签: