CF779A.Pupils Redistribution

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

In high school 0xFF there are two groups of pupils: the group AA and the group BB . Each group consists of exactly nn students. An academic performance of each student is known — integer value between 11 and 55 .

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 11 , the same number of students whose academic performance is 22 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 AA and one student of class BB . 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.

输入格式

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

The second line contains sequence of integer numbers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=51<=a_{i}<=5 ), where aia_{i} is academic performance of the ii -th student of the group AA .

The third line contains sequence of integer numbers b1,b2,...,bnb_{1},b_{2},...,b_{n} ( 1<=bi<=51<=b_{i}<=5 ), where bib_{i} is academic performance of the ii -th student of the group BB .

输出格式

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

输入输出样例

  • 输入#1

    4
    5 4 4 4
    5 5 4 5
    

    输出#1

    1
    
  • 输入#2

    6
    1 1 1 1 1 1
    5 5 5 5 5 5
    

    输出#2

    3
    
  • 输入#3

    1
    5
    3
    

    输出#3

    -1
    
  • 输入#4

    9
    3 2 5 5 2 3 3 3 2
    4 1 4 1 1 2 4 4 1
    

    输出#4

    4
    
首页