码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2020-01-11 09:17:35      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:trie   cout   using   problem   names   round   void   res   ORC   

题目: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

标签:trie   cout   using   problem   names   round   void   res   ORC   

原文地址:https://www.cnblogs.com/c4Lnn/p/12178902.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!