CF1556B.Take Your Places!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
William has an array of n integers a1,a2,…,an . In one move he can swap two neighboring items. Two items ai and aj 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≤t≤104 ). Description of the test cases follows.
The first line of each test case contains an integer n (1≤n≤105) which is the total number of items in William's array.
The second line contains n integers a1,a2,…,an (1≤ai≤109) which are William's array.
It is guaranteed that the sum of n over all test cases does not exceed 105 .
输出格式
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:
- 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:
- swap(3, 4). Array after performing the operation: [1,1,2,1,2,2]
- swap(2, 3). Array after performing the operation: [1,2,1,1,2,2]
- 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:
- swap(2, 3). Array after performing the operation: [6,3,2,4,5,1]
- swap(4, 5). Array after performing the operation: [6,3,2,5,4,1]