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

CF1208F Bits And Pieces

时间:2019-08-26 22:44:20      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:--   max   cin   oid   ==   c++   syn   else   als   

#include<bits/stdc++.h>
const int maxn = 1 << 21;
int c[maxn],a[maxn],n;
inline void ins(int x,int b){
    if(c[x] >= 2) return ;
    if(b == -1) return void(++c[x]);
    ins(x,b-1);
    if(x >> b & 1) ins(x ^ 1 << b,b-1);
}
inline int qry(int x){
    int ret = 0,p = 0;
    for(int i=20;~i;--i)
        if(x >> i & 1) ret |= 1 << i;
        else if(c[p | 1 << i] >= 2)
            ret |= 1 << i,p |= 1 << i;
    return ret;
}
int main(){
    std::ios::sync_with_stdio(false),std::cin.tie(0);
    std::cin >> n;
    for(int i=1;i<=n;++i) std::cin >> a[i];
    int ans = 0;
    for(int i=n;i>=1;--i){
        if(i <= n - 2) ans = std::max(qry(a[i]),ans);
        ins(a[i],20);
    }
    std::cout << ans << '\n';
}

CF1208F Bits And Pieces

标签:--   max   cin   oid   ==   c++   syn   else   als   

原文地址:https://www.cnblogs.com/skip1978/p/11415290.html

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