結果

問題 No.130 XOR Minimax
ユーザー mayoko_mayoko_
提出日時 2015-01-17 12:00:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 989 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 14,604 KB
最終ジャッジ日時 2024-09-12 22:33:18
合計ジャッジ時間 2,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 16 ms
6,944 KB
testcase_05 AC 45 ms
6,940 KB
testcase_06 AC 87 ms
14,604 KB
testcase_07 AC 99 ms
14,492 KB
testcase_08 AC 89 ms
9,636 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 20 ms
6,944 KB
testcase_11 AC 68 ms
9,856 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 54 ms
8,704 KB
testcase_14 AC 92 ms
8,416 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 60 ms
6,940 KB
testcase_17 AC 62 ms
7,040 KB
testcase_18 AC 68 ms
7,552 KB
testcase_19 AC 86 ms
8,148 KB
testcase_20 AC 37 ms
6,944 KB
testcase_21 AC 92 ms
8,376 KB
testcase_22 AC 18 ms
6,944 KB
testcase_23 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <sstream>
#include <string>
#include <vector>
#include <map>
#include <algorithm>
#include <iostream>
#include <utility>
#include <set>
#include <cctype>
#include <queue>
#include <stack>
#include <cstdio>
#include <cstdlib>
#include <cmath>

#define INF 1000000000

using namespace std;
typedef long long ll;

const int MAXN = 100010;

int dfs(int d, vector<int>& v) {
    if (v.size() <= 1) return 0;
    vector<int> w[2];
    for (int i = 0; i < (int)v.size(); i++) {
        int x = v[i];
        w[(x>>d)&1].push_back(x^(x&(1<<d)));
    }
    if (w[0].empty()) return dfs(d-1, w[1]);
    if (w[1].empty()) return dfs(d-1, w[0]);
    return (1<<d) + min(dfs(d-1, w[0]), dfs(d-1, w[1]));
}

int main() {
    int N;
    cin >> N;
    set<int> s;
    for (int i = 0; i < N; i++) {
        int x;
        cin >> x;
        s.insert(x);
    }
    vector<int> v;
    for (auto it = s.begin(); it != s.end(); it++) {
        v.push_back(*it);
    }
    cout << dfs(30, v) << endl;
}
0