Even Array

举报
辰chen 发表于 2022/06/17 22:36:22 2022/06/17
【摘要】 文章目录 一、B. Even Array总结 一、B. Even Array 本题链接:B. Even Array 题目: B. Even Array time limit pe...


一、B. Even Array

本题链接B. Even Array

题目

B. Even Array

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output

You are given an array a[0…n−1] of length n which consists of non-negative integers. Note that array indices start from zero.

An array is called good if the parity of each index matches the parity of the element at that index. More formally, an array is good if for all i (0≤i≤n−1) the equality imod2=a[i]mod2 holds, where xmod2 is the remainder of dividing x by 2.

For example, the arrays [0,5,2,1] and [0,17,0,3] are good, and the array [2,4,6,7] is bad, because for i=1, the parities of i and a[i] are different: imod2=1mod2=1, but a[i]mod2=4mod2=0.

In one move, you can take any two elements of the array and swap them (these elements are not necessarily adjacent).

Find the minimum number of moves in which you can make the array a good, or say that this is not possible.

Input
The first line contains a single integer t (1≤t≤1000) — the number of test cases in the test. Then t test cases follow.

Each test case starts with a line containing an integer n (1≤n≤40) — the length of the array a.

The next line contains n integersa0,a1,…,an−1 (0≤ai≤1000) — the initial array.

Output
For each test case, output a single integer — the minimum number of moves to make the given array a good, or -1 if this is not possible.

Example
input
4
4
3 2 7 6
3
3 2 6
1
7
7
4 9 2 1 18 3 0
output
2
1
-1
0

Note
In the first test case, in the first move, you can swap the elements with indices 0 and 1, and in the second move, you can swap the elements with indices 2 and 3.

In the second test case, in the first move, you need to swap the elements with indices 0 and 1.

In the third test case, you cannot make the array good.

本博客给出本题截图
在这里插入图片描述
题意:要求数组从0开始,奇数的索引必须元素为奇数,偶数的索引必须元素为偶数,问对于一个数组,每次可以交换任意两个位置上的元素,问最少交换几次可以使数组满足上述需求,如果不可以,输出-1

AC代码

#include <iostream>

using namespace std;

const int N = 1010;

int a[N];

int main()
{
    int t;
    cin >> t;
    
    while (t -- )
    {
        int n, odd = 0, even = 0;
        cin >> n;
        
        for (int i = 0; i < n; i ++ )
        {
            cin >> a[i];
            if (i % 2 == 0 && a[i] % 2 != 0)
                odd ++;
            else if (i % 2 != 0 && a[i] % 2 == 0)
                even ++;
        }
        
        if (odd != even)
            puts("-1");
        else 
            cout << odd << endl;
    }
    
    return 0;
}

  
 

总结

水题,不解释

文章来源: chen-ac.blog.csdn.net,作者:辰chen,版权归原作者所有,如需转载,请联系作者。

原文链接:chen-ac.blog.csdn.net/article/details/118978827

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。