結果

問題 No.130 XOR Minimax
ユーザー tubo28tubo28
提出日時 2015-06-20 14:23:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 601 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 64,080 KB
実行使用メモリ 56,688 KB
最終ジャッジ日時 2024-09-12 22:35:14
合計ジャッジ時間 3,199 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
6,916 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 79 ms
56,560 KB
testcase_05 AC 110 ms
56,688 KB
testcase_06 AC 82 ms
32,592 KB
testcase_07 AC 95 ms
31,720 KB
testcase_08 AC 168 ms
12,036 KB
testcase_09 AC 16 ms
7,552 KB
testcase_10 AC 24 ms
10,112 KB
testcase_11 AC 75 ms
28,112 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 63 ms
23,004 KB
testcase_14 AC 147 ms
10,928 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 104 ms
8,204 KB
testcase_17 AC 108 ms
8,564 KB
testcase_18 AC 117 ms
9,168 KB
testcase_19 AC 139 ms
10,408 KB
testcase_20 AC 70 ms
6,940 KB
testcase_21 AC 146 ms
10,880 KB
testcase_22 AC 35 ms
6,944 KB
testcase_23 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

typedef long long ll;
#define loop(i,a,b) for(int i=(a);i<int(b);i++)
#define rep(i,b) loop(i,0,b)

ll solve(int b, vector<ll> a){
    if(b < 0 || a.empty()) return 0;
    vector<ll> div[2];
    for(ll x : a) div[x>>b&1].push_back(x);
    if(div[0].size()==0) return solve(b-1,div[1]);
    if(div[1].size()==0) return solve(b-1,div[0]);
    ll x = solve(b-1,div[0]), y = solve(b-1,div[1]);
    return 1<<b | min(x,y);
}

int main(){
    int n;
    cin >> n;
    vector<ll> a(n);
    rep(i,n) cin >> a[i];
    cout << solve(32,a) << endl;
}
0