CSU 1216 异或最大值
题目:http://acm.csu.edu.cn/csuoj/problemset/problem?pid=1216
模板题
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cmath> #include<algorithm> #include<vector> #include<queue> #include<stack> #include<map> #include<set> using namespace std; const int N=1e5+5; int ch[32*N][2]; int val[32*N]; int a[N]; int tot; void init() { tot=0; memset (ch[0],0, sizeof (ch[0])); } void Insert( int x) { int now=0; for ( int i=31;i>=0;i--) { int t=x>>i&1; if (!ch[now][t]) { ch[now][t]=++tot; memset (ch[tot],0, sizeof (ch[tot])); } now=ch[now][t]; } val[now]=x; } int query( int x) { int now=0; for ( int i=31;i>=0;i--) { int t=x>>i&1; if (ch[now][t^1]) now=ch[now][t^1]; else now=ch[now][t]; } return val[now]; } int main() { int n; while ( scanf ( "%d" ,&n)!=EOF) { init(); for ( int i=1;i<=n;i++) { scanf ( "%d" ,&a[i]); Insert(a[i]); } int ans=0; for ( int i=1;i<=n;i++) { int t=query(a[i]); ans=max(ans,a[i]^t); } printf ( "%d\n" ,ans); } return 0; } |
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步