CF1208F Bits And Pieces
Posted skip1978
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF1208F Bits And Pieces相关的知识,希望对你有一定的参考价值。
#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的主要内容,如果未能解决你的问题,请参考以下文章
CodeForces - 1208F Bits And Pieces(SOSdp+贪心)
Codeforces 1208F Bits And Pieces 位运算 + 贪心 + dp