CodeForces - 1285D Dr. Evil Underscores(字典树分治)

体面描述

Today, as a friendship gift, Bakry gave Badawy n integers a1,a2,…,an and challenged him to choose an integer X such that the value 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).

Input

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

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

Output

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

Examples

Input

3
1 2 3

Output

2

Input

2
1 5

Output

4

Note

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

问题简述

分治,问题分析以后补

#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5;
typedef long long ll;
typedef unsigned long long ull;
const int INF = 0x3f3f3f3f;
ll n;
vector<int> a;
ll solve(vector<int> &c, int idx)
{
    if (idx < 0 || !c.size())
        return 0;
    vector<int> l, r;
    for (auto &it : c)
    {
        if (((it >> idx) & 1) == 0)
            l.push_back(it);
        else
            r.push_back(it);
    }
        if (!l.size())
            return solve(r, idx - 1);
        if (!r.size())
            return solve(l, idx - 1);
        return min(solve(l, idx - 1), solve(r, idx - 1)) + (1 << idx);
}

int main()
{
    
    scanf("%d",&n);
    a.resize(n);
    for (auto &i : a)
       scanf("%d",&i);
    printf("%d",solve(a, 30));
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值