結果
問題 | No.130 XOR Minimax |
ユーザー | KKT89 |
提出日時 | 2020-01-11 12:29:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 83 ms / 5,000 ms |
コード長 | 1,045 bytes |
コンパイル時間 | 921 ms |
コンパイル使用メモリ | 101,620 KB |
実行使用メモリ | 121,204 KB |
最終ジャッジ日時 | 2024-09-12 22:54:23 |
合計ジャッジ時間 | 3,130 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
120,688 KB |
testcase_01 | AC | 33 ms
120,732 KB |
testcase_02 | AC | 32 ms
120,492 KB |
testcase_03 | AC | 33 ms
120,572 KB |
testcase_04 | AC | 44 ms
121,080 KB |
testcase_05 | AC | 50 ms
121,172 KB |
testcase_06 | AC | 48 ms
121,172 KB |
testcase_07 | AC | 53 ms
121,160 KB |
testcase_08 | AC | 64 ms
121,204 KB |
testcase_09 | AC | 35 ms
120,612 KB |
testcase_10 | AC | 38 ms
120,740 KB |
testcase_11 | AC | 51 ms
121,012 KB |
testcase_12 | AC | 34 ms
120,552 KB |
testcase_13 | AC | 47 ms
120,860 KB |
testcase_14 | AC | 82 ms
121,084 KB |
testcase_15 | AC | 33 ms
120,504 KB |
testcase_16 | AC | 67 ms
120,740 KB |
testcase_17 | AC | 65 ms
120,856 KB |
testcase_18 | AC | 72 ms
120,808 KB |
testcase_19 | AC | 77 ms
120,976 KB |
testcase_20 | AC | 52 ms
120,664 KB |
testcase_21 | AC | 83 ms
121,104 KB |
testcase_22 | AC | 40 ms
120,720 KB |
testcase_23 | AC | 34 ms
120,652 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <math.h> using namespace std; typedef long long int ll; int ans=(1<<30); template<int MX,int MXBIT>struct Trie{ int nex[MX][2],sz[MX],num=0; // num is last node in trie Trie(){ for(int i=0;i<MX;i++){ nex[i][0]=nex[i][1]=0; sz[i]=0; } } void ins(ll x,int a=1){ // insert or delete int cur=0; sz[cur]+=a; for(int i=MXBIT-1;i>=0;i--){ int t=(x>>i)&1; if(!nex[cur][t]){ num++; nex[cur][t]=num; } sz[cur=nex[cur][t]]+=a; } } void dfs(int a,int b,int res=0){ if(b==-1){ ans=min(ans,res); return; } if(nex[a][0]&&nex[a][1]){ for(int i=0;i<2;i++){ dfs(nex[a][i],b-1,res^(1<<b)); } } else{ for(int i=0;i<2;i++){ if(nex[a][i]){ dfs(nex[a][i],b-1,res); } } } } }; Trie<(int)1e7,30> T; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; vector<ll> a(n); for(int i=0;i<n;i++){ cin >> a[i]; T.ins(a[i]); } T.dfs(0,29); cout << ans << endl; }