結果

問題 No.130 XOR Minimax
ユーザー kimiyukikimiyuki
提出日時 2016-10-21 17:03:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 5,000 ms
コード長 889 bytes
コンパイル時間 932 ms
コンパイル使用メモリ 80,768 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-09-12 22:41:12
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
44,416 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 60 ms
6,940 KB
testcase_05 AC 88 ms
6,944 KB
testcase_06 AC 102 ms
16,128 KB
testcase_07 AC 105 ms
16,128 KB
testcase_08 AC 289 ms
98,688 KB
testcase_09 AC 22 ms
7,040 KB
testcase_10 AC 35 ms
8,320 KB
testcase_11 AC 111 ms
12,672 KB
testcase_12 AC 11 ms
6,940 KB
testcase_13 AC 87 ms
11,996 KB
testcase_14 AC 325 ms
80,128 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 225 ms
58,604 KB
testcase_17 AC 233 ms
60,672 KB
testcase_18 AC 255 ms
64,888 KB
testcase_19 AC 303 ms
75,520 KB
testcase_20 AC 145 ms
40,576 KB
testcase_21 AC 322 ms
79,416 KB
testcase_22 AC 74 ms
21,376 KB
testcase_23 AC 18 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <memory>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
using namespace std;
struct tree_t {
    shared_ptr<tree_t> left, right;
};
shared_ptr<tree_t> insert(shared_ptr<tree_t> t, int32_t x, int i) {
    if (not t) t = make_shared<tree_t>();
    if (i == -1) return t;
    shared_ptr<tree_t> & nt = (x & (1 << i) ? t->right : t->left);
    nt = insert(nt, x, i-1);
    return t;
}
int dfs(shared_ptr<tree_t> const & t, int i) {
    return
        not t ? 0 :
        not t->left  ? dfs(t->right, i-1) :
        not t->right ? dfs(t->left, i-1) :
        min(dfs(t->left, i-1), dfs(t->right, i-1)) + (1 << i);
}
int main() {
    int n; cin >> n;
    vector<int32_t> a(n); repeat (i,n) cin >> a[i];
    shared_ptr<tree_t> root = nullptr;
    repeat (i,n) root = insert(root, a[i], 31);
    cout << dfs(root, 31) << endl;
    return 0;
}
0