zoukankan      html  css  js  c++  java
  • CF779A(round 402 div.2 A) Pupils Redistribution

    题意:

    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 nstudents. 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

    思路:

    构造。

    实现:

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <algorithm>
     4 #include <cmath>
     5 using namespace std;
     6 
     7 int n, tmp, ca[6], cb[6];
     8 int main()
     9 {
    10     cin >> n;
    11     for (int i = 0; i < n; i++)
    12     {
    13         scanf("%d", &tmp);
    14         ca[tmp]++;
    15     }
    16     for (int i = 0; i < n; i++)
    17     {
    18         scanf("%d", &tmp);
    19         cb[tmp]++;
    20     }
    21     int cnt = 0;
    22     bool flag = true;
    23     for (int i = 1; i <= 5; i++)
    24     {
    25         tmp = abs(cb[i] - ca[i]);
    26         if (tmp & 1)
    27         {
    28             flag = false;
    29             break;
    30         }
    31         cnt += tmp;
    32     }
    33     if (!flag)
    34         cout << "-1" << endl;
    35     else
    36         cout << cnt / 4 + cnt % 4 / 2 << endl;
    37     return 0;
    38 }
  • 相关阅读:
    判断java中两个对象是否相等
    面试题记录
    springboot集成redis操作
    Java 之Integer相等比较
    CSS+DIV网页样式与布局:第二章:CSS的基本语法
    JSP标签:jsp内置标签、jstl标签、自定义标签
    jsp jstl标签库 el表达式
    mysql数据库修改字段类型
    读CSS DIV网页样式与布局心得体会
    Absolute(绝对定位)与relative(相对定位)的图文讲解
  • 原文地址:https://www.cnblogs.com/wangyiming/p/6445497.html
Copyright © 2011-2022 走看看