Codeforces Round #613 (Div. 2) D. Dr. Evil Underscores

Posted c4lnn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #613 (Div. 2) D. Dr. Evil Underscores相关的知识,希望对你有一定的参考价值。

题目:http://codeforces.com/contest/1285/problem/D
思路:从高位往低位建 (01;trie) 树,从高位 dfs
当只有一个分支,当前位为 (0),填法唯一;
当有两个分支,当前位为 (1),填法不唯一,则返回较小值;

#include<bits/stdc++.h>
 
using namespace std;
 
const int N=1e5+5;
 
int n;
int trie[N*31][2];
int cnt;
 
void insert(int a)
{
    int pre=0;
    for(int i=30;i>=0;i--)
    {
        int now=(a>>i)&1;
        if(!trie[pre][now]) trie[pre][now]=++cnt;
        pre=trie[pre][now];
    }
}
int dfs(int pre,int t,int res)
{
    if(t==-1) return res;
    if(trie[pre][0]&&!trie[pre][1]) return dfs(trie[pre][0],t-1,res);
    else if(!trie[pre][0]&&trie[pre][1]) return dfs(trie[pre][1],t-1,res);
    return min(dfs(trie[pre][0],t-1,res+(1<<t)),dfs(trie[pre][1],t-1,res+(1<<t)));
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cin>>n;
    for(int i=1;i<=n;i++)
    {
        int a;
        cin>>a;
        insert(a);
    }
    cout<<dfs(0,30,0)<<endl;
    return 0;
}

以上是关于Codeforces Round #613 (Div. 2) D. Dr. Evil Underscores的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #613 (Div. 2)

Codeforces Round #613 (Div. 2) B. Just Eat It!

Codeforces Round #613 (Div. 2)D(贪心,分治)

Codeforces Round #613 (Div. 2) D. Dr. Evil Underscores

Codeforces Round #613 (Div. 2) B. Just Eat It!

Codeforces Round #613 (Div. 2) D - Dr. Evil Underscores(思维,位运算)