Algorithm


A. Everybody Likes Good Arrays!
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

An array a is good if for all pairs of adjacent elements, ai�� and ai+1��+1 (1i<n1≤�<�) are of different parity. Note that an array of size 11 is trivially good.

You are given an array of size n.

In one operation you can select any pair of adjacent elements in which both elements are of the same parity, delete them, and insert their product in the same position.

Find the minimum number of operations to form a good array.

Input

Each test contains multiple test cases. The first line contains the number of test cases t (1t5001≤�≤500). The description of the test cases follows.

The first line of each test case contains an integer n (1n1001≤�≤100).

The second line of each test case contains n integers a1,a2,,an�1,�2,…,�� (1ai1091≤��≤109).

Output

For each test case print an integer, the minimum number of operations required to form a good array.

Example
input
Copy
3
5
1 7 11 2 13
4
1 2 3 4
6
1 1 1 2 2 3
output
Copy
2
0
3
Note

Consider the first test case. Select the 22-nd and the 33-rd integers and apply the operation on them. The array changes from [1,7,11,2,13][1,7,11,2,13] to [1,77,2,13][1,77,2,13]. Next, select the 11-st and the 22-nd integers, array changes from [1,77,2,13][1,77,2,13] to [77,2,13][77,2,13]. Thus we require 22 operations. It can be proved that this is the minimum number of operations.

In the second test case, the given array is already good. So we require 00 operations.

 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include<bits/stdc++.h>
using namespace std;


#define ll long long
#define endl "\n"
#define debug(n) cout<<(n)<<endl;
#define pb push_back
const ll INF = 2e18 + 99;


int main(){
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);

  int t;
  cin>>t;
  while(t--){
    int n;
    cin>>n;
    int arr[n];
    int x, ans = 0;
    for(int i = 0; i < n; i++){
      cin>>arr[i];
    }
    for(int i = 0; i < n-1; i++){
      if(((arr[i] % 2) and (arr[i+1]%2)) or ((arr[i]%2 == 0) and (arr[i+1]%2 == 0))){
        ans++;
      }
    }
    cout<<ans<<endl;
  }

}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3
5
1 7 11 2 13
4
1 2 3 4
6
1 1 1 2 2 3

Output

x
+
cmd
2
0
3
Advertisements

Demonstration


Codeforcess Solution 1777-A A. Everybody Likes Good Arrays! ,C++, Java, Js and Python,1777-A,Codeforcess Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+