CF1257F.Make Them Similar

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's call two numbers similar if their binary representations contain the same number of digits equal to 11 . For example:

  • 22 and 44 are similar (binary representations are 1010 and 100100 );
  • 13371337 and 42134213 are similar (binary representations are 1010011100110100111001 and 10000011101011000001110101 );
  • 33 and 22 are not similar (binary representations are 1111 and 1010 );
  • 4242 and 1313 are similar (binary representations are 101010101010 and 11011101 ).

You are given an array of nn integers a1a_1 , a2a_2 , ..., ana_n . You may choose a non-negative integer xx , and then get another array of nn integers b1b_1 , b2b_2 , ..., bnb_n , where bi=aixb_i = a_i \oplus x ( \oplus denotes bitwise XOR).

Is it possible to obtain an array bb where all numbers are similar to each other?

输入格式

The first line contains one integer nn ( 2n1002 \le n \le 100 ).

The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 0ai23010 \le a_i \le 2^{30} - 1 ).

输出格式

If it is impossible to choose xx so that all elements in the resulting array are similar to each other, print one integer 1-1 .

Otherwise, print any non-negative integer not exceeding 23012^{30} - 1 that can be used as xx so that all elements in the resulting array are similar.

输入输出样例

  • 输入#1

    2
    7 2
    

    输出#1

    1
    
  • 输入#2

    4
    3 17 6 0
    

    输出#2

    5
    
  • 输入#3

    3
    1 2 3
    

    输出#3

    -1
    
  • 输入#4

    3
    43 12 12
    

    输出#4

    1073709057
    
首页