CF1174A.Ehab Fails to Be Thanos

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You're given an array aa of length 2n2n . Is it possible to reorder it in such way so that the sum of the first nn elements isn't equal to the sum of the last nn elements?

输入格式

The first line contains an integer nn ( 1n10001 \le n \le 1000 ), where 2n2n is the number of elements in the array aa .

The second line contains 2n2n space-separated integers a1a_1 , a2a_2 , \ldots , a2na_{2n} ( 1ai1061 \le a_i \le 10^6 ) — the elements of the array aa .

输出格式

If there's no solution, print "-1" (without quotes). Otherwise, print a single line containing 2n2n space-separated integers. They must form a reordering of aa . You are allowed to not change the order.

输入输出样例

  • 输入#1

    3
    1 2 2 1 3 1
    

    输出#1

    2 1 3 1 1 2
  • 输入#2

    1
    1 1
    

    输出#2

    -1

说明/提示

In the first example, the first nn elements have sum 2+1+3=62+1+3=6 while the last nn elements have sum 1+1+2=41+1+2=4 . The sums aren't equal.

In the second example, there's no solution.

首页