• 779A Pupils Redistribution


    /*

    A. Pupils Redistribution
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    In Berland each high school student is characterized by academic performance — integer value between 1 and 5.

    In high school 0xFF there are two groups of pupils: the group A and the group B. Each group consists of exactly n students. An academic performance of each student is known — integer value between 1 and 5.

    The school director wants to redistribute students between groups so that each of the two groups has the same number of students whose academic performance is equal to 1, the same number of students whose academic performance is 2 and so on. In other words, the purpose of the school director is to change the composition of groups, so that for each value of academic performance the numbers of students in both groups are equal.

    To achieve this, there is a plan to produce a series of exchanges of students between groups. During the single exchange the director selects one student from the class A and one student of class B. After that, they both change their groups.

    Print the least number of exchanges, in order to achieve the desired equal numbers of students for each academic performance.

    Input

    The first line of the input contains integer number n (1 ≤ n ≤ 100) — number of students in both groups.

    The second line contains sequence of integer numbers a1, a2, ..., an (1 ≤ ai ≤ 5), where ai is academic performance of the i-th student of the group A.

    The third line contains sequence of integer numbers b1, b2, ..., bn (1 ≤ bi ≤ 5), where bi is academic performance of the i-th student of the group B.

    Output

    Print the required minimum number of exchanges or -1, if the desired distribution of students can not be obtained.

    Examples
    Input
    4
    5 4 4 4
    5 5 4 5
    Output
    1
    Input
    6
    1 1 1 1 1 1
    5 5 5 5 5 5
    Output
    3
    Input
    1
    5
    3
    Output
    -1
    Input
    9
    3 2 5 5 2 3 3 3 2
    4 1 4 1 1 2 4 4 1
    Output
    4

    */

    /*题意:交换两个组的学生,使得两个组的分数相同。

    解法:一个分数要出现次数为偶数,如果出现奇数不能平分。

    然后计算两个组出现相同分数之差除以2,求得和/2就是结果*/

    #include <iostream>
    #include <bits/stdc++.h>
    using namespace std;
    int a[110], b[110];
    int x[6], y[6];
    int main()
    {
        int n;
        cin >> n;
        for(int i = 0; i < n; i++)
        {
            cin >> a[i];
            x[a[i]] ++;
        }
        for(int i = 0; i < n; i++)
        {
            cin >> b[i];
            y[b[i]] ++;
        }
        for(int i = 1; i <= 5; i++)
        {
            if((x[i] + y[i]) % 2 != 0)
            {
                cout << "-1" << endl;
                return 0;
            }
        }
        int aim = 0;
        for(int i = 1; i <= 5; i++)
        {
            aim += abs(x[i] - y[i]) / 2;
        }
        cout << aim / 2 << endl;
        return 0;
    }
  • 相关阅读:
    GitHub常用 库
    App性能优化
    iOS App性能优化
    UIButton图片与文字位置调整
    Mac常用目录
    js数字转金额,ajax调用接口,后台返回html(完整页面),打开新窗口并写入html
    js坑 把数字型的字符串默认为数字 把前面的0给去掉了("001")
    url跳转路径参数获取
    常用正则表达式,手机号,邮箱,网址
    Js获取操作系统版本 && 获得浏览器版本
  • 原文地址:https://www.cnblogs.com/jxust-jiege666/p/6481374.html
Copyright © 2020-2023  润新知