結果
問題 | No.130 XOR Minimax |
ユーザー | IKyopro |
提出日時 | 2020-01-11 01:35:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 959 bytes |
コンパイル時間 | 1,978 ms |
コンパイル使用メモリ | 205,176 KB |
実行使用メモリ | 817,280 KB |
最終ジャッジ日時 | 2024-11-23 22:21:59 |
合計ジャッジ時間 | 29,597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | AC | 58 ms
8,076 KB |
testcase_07 | AC | 132 ms
27,672 KB |
testcase_08 | AC | 61 ms
7,880 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | WA | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 74 ms
6,816 KB |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; template<class T,class U> using P = pair<T,U>; template<class T> using vec = vector<T>; template<class T> using vvec = vector<vec<T>>; int main(){ cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vec<ll> A(N); int h = 0; for(int i=0;i<N;i++){ cin >> A[i]; for(int j=0;j<30;j++) if(A[i]&(1<<j)) h = j; } auto calc = [&](auto&& self,vec<ll> A,int bit)->ll{ bool ok = true; int n = A.size(); if(n<=1) return 0; ll a = -1; vec<ll> X,Y; for(int i=0;i<n;i++){ if(A[i]&(1<<bit)) X.push_back(A[i]%(1<<bit)); else Y.push_back(A[i]%(1<<bit)); } if(X.empty() || Y.empty()) return (X.empty()? self(self,Y,bit-1):self(self,X,bit-1)); else return (1<<bit) + min(self(self,X,bit-1),self(self,Y,bit-1)); }; cout << calc(calc,A,h) << endl; }