結果

問題 No.130 XOR Minimax
ユーザー mamekinmamekin
提出日時 2015-02-01 00:46:32
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 881 bytes
コンパイル時間 898 ms
コンパイル使用メモリ 100,184 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 04:39:44
合計ジャッジ時間 3,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 29 ms
5,376 KB
testcase_05 AC 58 ms
5,376 KB
testcase_06 AC 46 ms
5,376 KB
testcase_07 AC 63 ms
5,376 KB
testcase_08 AC 86 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 48 ms
5,376 KB
testcase_14 AC 147 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 114 ms
5,376 KB
testcase_17 AC 120 ms
5,376 KB
testcase_18 AC 131 ms
5,376 KB
testcase_19 AC 169 ms
5,376 KB
testcase_20 AC 69 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 32 ms
5,376 KB
testcase_23 AC 10 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
using namespace std;

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    for(int i=0; i<n; ++i)
        cin >> a[i];

    int ret = INT_MAX;
    for(int i=30; i>=0; --i){
        map<int, bitset<2> > m;
        for(int j=0; j<n; ++j){
            int x = (a[j] & ret) >> (i + 1);
            int y = (a[j] >> i) & 1;
            m[x][y] = true;
        }

        for(auto& p : m){
            if(!p.second.all())
                ret &= ~(1 << i);
        }
    }
    cout << ret << endl;

    return 0;
}
0