結果

問題 No.130 XOR Minimax
ユーザー はまやんはまやんはまやんはまやん
提出日時 2017-04-24 16:33:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 880 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 170,100 KB
実行使用メモリ 16,320 KB
最終ジャッジ日時 2024-09-12 22:45:24
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 33 ms
16,192 KB
testcase_05 AC 39 ms
16,320 KB
testcase_06 AC 40 ms
10,172 KB
testcase_07 AC 42 ms
9,916 KB
testcase_08 AC 92 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 15 ms
6,940 KB
testcase_11 AC 45 ms
9,148 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 37 ms
8,068 KB
testcase_14 AC 94 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 66 ms
6,944 KB
testcase_17 AC 70 ms
6,940 KB
testcase_18 AC 75 ms
6,940 KB
testcase_19 AC 88 ms
6,944 KB
testcase_20 AC 45 ms
6,940 KB
testcase_21 AC 93 ms
6,944 KB
testcase_22 AC 22 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,a,b) for(int i=a;i<b;i++)



#define INF INT_MAX/2
int dfs(int bit, vector<int> &v) {
    if (bit < 0) return 0;
    if (v.size() == 0) return 0;

    vector<int> v0, v1;
    for (int x : v) {
        if (x & (1 << bit)) v1.push_back(x & ((1<<bit) - 1));
        else v0.push_back(x & ((1 << bit) - 1));
    }

    if (v0.size() == v.size()) return dfs(bit - 1, v0);
    if (v1.size() == v.size()) return dfs(bit - 1, v1);

    int res = INF;
    res = min(res, dfs(bit - 1, v0));
    res = min(res, dfs(bit - 1, v1));
    res += 1 << bit;

    return res;
}
//-----------------------------------------------------------------------------------
int main() {
    int N; cin >> N;
    vector<int> v;
    rep(i, 0, N) {
        int x;
        scanf("%d", &x);
        v.push_back(x);
    }

    cout << dfs(30, v) << endl;
}
0