結果

問題 No.130 XOR Minimax
ユーザー IKyoproIKyopro
提出日時 2020-01-11 01:45:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 951 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 204,252 KB
実行使用メモリ 28,340 KB
最終ジャッジ日時 2024-09-12 22:54:01
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 73 ms
28,340 KB
testcase_05 AC 79 ms
28,220 KB
testcase_06 AC 72 ms
16,056 KB
testcase_07 AC 74 ms
15,784 KB
testcase_08 AC 47 ms
6,940 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 69 ms
14,136 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 57 ms
11,980 KB
testcase_14 AC 53 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 37 ms
6,940 KB
testcase_17 AC 38 ms
6,944 KB
testcase_18 AC 41 ms
6,944 KB
testcase_19 AC 49 ms
6,940 KB
testcase_20 AC 24 ms
6,944 KB
testcase_21 AC 52 ms
6,940 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 || bit<0) return 0;
        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,29) << endl;
}
0