CF1299A.Anu Has a Function
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Anu has created her own function f : f(x,y)=(x∣y)−y where ∣ denotes the bitwise OR operation. For example, f(11,6)=(11∣6)−6=15−6=9 . It can be proved that for any nonnegative numbers x and y value of f(x,y) is also nonnegative.
She would like to research more about this function and has created multiple problems for herself. But she isn't able to solve all of them and needs your help. Here is one of these problems.
A value of an array [a1,a2,…,an] is defined as f(f(…f(f(a1,a2),a3),…an−1),an) (see notes). You are given an array with not necessarily distinct elements. How should you reorder its elements so that the value of the array is maximal possible?
输入格式
The first line contains a single integer n ( 1≤n≤105 ).
The second line contains n integers a1,a2,…,an ( 0≤ai≤109 ). Elements of the array are not guaranteed to be different.
输出格式
Output n integers, the reordering of the array with maximum value. If there are multiple answers, print any.
输入输出样例
输入#1
4 4 0 11 6
输出#1
11 6 4 0
输入#2
1 13
输出#2
13
说明/提示
In the first testcase, value of the array [11,6,4,0] is f(f(f(11,6),4),0)=f(f(9,4),0)=f(9,0)=9 .
[11,4,0,6] is also a valid answer.