結果

問題 No.130 XOR Minimax
ユーザー tottoripapertottoripaper
提出日時 2019-03-08 15:25:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 965 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 171,168 KB
実行使用メモリ 15,824 KB
最終ジャッジ日時 2024-09-12 22:52:11
合計ジャッジ時間 3,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 29 ms
15,824 KB
testcase_05 AC 37 ms
15,824 KB
testcase_06 AC 37 ms
9,680 KB
testcase_07 AC 41 ms
9,416 KB
testcase_08 AC 91 ms
6,944 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 35 ms
8,592 KB
testcase_12 AC 5 ms
6,944 KB
testcase_13 AC 31 ms
7,708 KB
testcase_14 AC 85 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 61 ms
6,940 KB
testcase_17 AC 63 ms
6,940 KB
testcase_18 AC 68 ms
6,940 KB
testcase_19 AC 80 ms
6,940 KB
testcase_20 AC 41 ms
6,944 KB
testcase_21 AC 84 ms
6,944 KB
testcase_22 AC 21 ms
6,940 KB
testcase_23 AC 8 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define fst(t) std::get<0>(t)
#define snd(t) std::get<1>(t)
#define thd(t) std::get<2>(t)
#define unless(p) if(!(p))
#define until(p) while(!(p))

using ll = std::int64_t;
using P = std::tuple<int,int>;

int N;

int f(int i, std::vector<int> &&A){
    if(i < 0){
        return 0;
    }

    std::vector<int> B[2];

    for(int a : A){
        B[a >> i & 1].emplace_back(a);
    }

    if(B[0].size() == 0){
        return f(i - 1, std::move(B[1]));
    }

    if(B[1].size() == 0){
        return f(i - 1, std::move(B[0]));
    }

    int x0 = f(i - 1, std::move(B[0])), x1 = f(i - 1, std::move(B[1]));
    return std::min(std::max((1 << i) + x0, x1), std::max(x0, (1 << i) + x1));
}

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    std::cin >> N;

    std::vector<int> A(N);

    for(int i=0;i<N;++i){
        std::cin >> A[i];
    }

    int x = f(29, std::move(A));
    std::cout << x << std::endl;
}
0