CF 1299.A——Anu Has a Function二进制

Posted Nirvana柒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF 1299.A——Anu Has a Function二进制相关的知识,希望对你有一定的参考价值。


​题目传送门​


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?


Input

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

Output n integers, the reordering of the array with maximum value. If there are multiple answers, print any.


inputCopy

4
4 0 11 6

1
13

outputCopy

11 6 4 0

13


Note

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.


题意

  • 定义一个函数CF
  • 给定一个长度为CF 数列 CF,定义
    CF
    为这个数列的值
  • 现在,请你将数列改变一种顺序,使得最后的值最大。
  • 输出你改变后的数列。
  • CF

题解

  • 我们发现这个函数实际上就是把y二进制有1的位,在x中减去,就是x的二进制去掉了y二进制有1的位
  • 那么其实答案之和第一个数有关,剩下的顺序无关
  • 找到最大的、某一位只有一个1的,将这个数方到最前面就行。

AC-Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

const int maxn = 1e5 + 7;

int a[maxn];

int main()
ll n; while (cin >> n)
for (ll i = 0; i < n; ++i)
cin >> a[i];
bool flag = true;
for (ll i = 30; i >= 0 && flag; CF1300C-Anu Has a Function 思维

Codeforces Round #618 (Div. 2) C.Anu Has a Function

cf1072B. Curiosity Has No Limits(枚举)

CF 39E. What Has Dirichlet Got to Do with That?(记忆化搜索+博弈论)

CF1204B Mislove Has Lost an Array

python报"TypeError: object of type 'Greenlet' has no len()"