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.


题意

  • 定义一个函数 f ( x , y ) = f ( x ∣ y ) − y f(x,y)=f(x∣y)−y f(x,y)=f(xy)y

  • 给定一个长度为 n n n 数列 a a a,定义
    f ( f . . f ( f ( a 1 , a 2 ) , a 3 ) , . . . a n − 1 ) , a n ) f(f..f(f(a1,a2),a3),...an−1),an) f(f..f(f(a1,a2),a3),...an1),an)
    为这个数列的值

  • 现在,请你将数列改变一种顺序,使得最后的值最大。

  • 输出你改变后的数列。

  • n ≤ 1 0 5 n≤10^5 n105


题解

  • 我们发现这个函数实际上就是把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; --i) {
			ll cnt = 0, j = 0;
			for (j = 0; j < n; ++j)
				if (a[j] & 1 << i)	++cnt;
			if (cnt == 1) {
				for (j = 0; j < n; ++j)
					if (a[j] & 1 << i)	break;
				cout << a[j] << " ";
				for (ll k = 0; k < n; ++k)
					if (k != j)	cout << a[k] << " ";
				flag = false;
			}
		}
		if (flag)		
			for (ll i = 0; i < n; ++i)		cout << a[i] << " ";
	}
	return 0;
}
  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值