結果

問題 No.130 XOR Minimax
ユーザー h_nosonh_noson
提出日時 2016-06-19 14:55:16
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 855 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 68,308 KB
実行使用メモリ 16,196 KB
最終ジャッジ日時 2024-09-12 22:40:52
合計ジャッジ時間 2,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 35 ms
16,060 KB
testcase_05 AC 40 ms
16,196 KB
testcase_06 AC 42 ms
10,048 KB
testcase_07 AC 44 ms
9,808 KB
testcase_08 AC 95 ms
6,944 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 40 ms
9,148 KB
testcase_12 AC 6 ms
6,944 KB
testcase_13 AC 34 ms
7,812 KB
testcase_14 AC 88 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 63 ms
6,940 KB
testcase_17 AC 66 ms
6,940 KB
testcase_18 AC 71 ms
6,944 KB
testcase_19 AC 82 ms
6,944 KB
testcase_20 AC 42 ms
6,940 KB
testcase_21 AC 86 ms
6,940 KB
testcase_22 AC 21 ms
6,944 KB
testcase_23 AC 8 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:33:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   33 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:35:20: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |     rep (i,n) scanf("%d",&v[i]);
      |               ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

int dfs(int b, vector<int>& v) {
    if (b < 0)
        return 0;
    int i;
    vector<int> s[2];
    rep (i,v.size())
        s[v[i]>>b&1].push_back(v[i]&(1<<b)-1);
    if (s[0].size() == v.size())
        return dfs(b-1,s[0]);
    else if (s[1].size() == v.size())
        return dfs(b-1,s[1]);
    else
        return min(dfs(b-1,s[0]),dfs(b-1,s[1])) + (1<<b);
}

int main(void) {
    int i, n;
    scanf("%d",&n);
    vector<int> v(n);
    rep (i,n) scanf("%d",&v[i]);

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