D. Dr. Evil Underscores

194 篇文章 1 订阅
4 篇文章 0 订阅

链接:https://codeforces.com/contest/1285/problem/D

Today, as a friendship gift, Bakry gave Badawy nn integers a1,a2,…,ana1,a2,…,an and challenged him to choose an integer XX such that the value max1≤i≤n(ai⊕X)max1≤i≤n(ai⊕X) is minimum possible, where ⊕⊕ denotes the bitwise XOR operation.

As always, Badawy is too lazy, so you decided to help him and find the minimum possible value of max1≤i≤n(ai⊕X)max1≤i≤n(ai⊕X).

Input

The first line contains integer nn (1≤n≤1051≤n≤105).

The second line contains nn integers a1,a2,…,ana1,a2,…,an (0≤ai≤230−10≤ai≤230−1).

Output

Print one integer — the minimum possible value of max1≤i≤n(ai⊕X)max1≤i≤n(ai⊕X).

Examples

input

Copy

3
1 2 3

output

Copy

2

input

Copy

2
1 5

output

Copy

4

Note

In the first sample, we can choose X=3X=3.

In the second sample, we can choose X=5X=5.

代码:

#include <bits/stdc++.h>
using namespace std;
long long n;
long long a[100010];
long long dfs(long long p, long long q, long long h) 
{
	if(h==-1) 
	return 0;
	long long l=p,r=q,t=p-1;
	while(l<=r) 
	{
		long long mid=(l+r)/2;
		if((a[mid]&((1<<h+1)-1))<(1<<h)) 
		l=(t=mid)+1;
		else 
		r=mid-1;
	}
	if(t==p-1||t==q) 
	{
		return dfs(p,q,h-1);
	}
	return min(dfs(p,t,h-1),dfs(t+1,q,h-1))+(1<<h);
}
int main() 
{
	scanf("%lld",&n); 
	for(int i=1;i<=n;i++) 
	{
		scanf("%lld",&a[i]);
	}
	sort(a+1,a+n+1);
	printf("%lld\n",dfs(1,n,30));
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值