結果

問題 No.130 XOR Minimax
ユーザー kk
提出日時 2021-02-26 19:45:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 630 bytes
コンパイル時間 2,351 ms
コンパイル使用メモリ 205,800 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-10-02 12:10:32
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,824 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 62 ms
53,292 KB
testcase_05 AC 68 ms
53,288 KB
testcase_06 AC 57 ms
29,996 KB
testcase_07 AC 58 ms
29,240 KB
testcase_08 AC 136 ms
9,476 KB
testcase_09 AC 14 ms
7,168 KB
testcase_10 AC 20 ms
9,472 KB
testcase_11 AC 59 ms
25,896 KB
testcase_12 AC 9 ms
6,820 KB
testcase_13 AC 51 ms
21,196 KB
testcase_14 AC 129 ms
8,708 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 95 ms
6,904 KB
testcase_17 AC 98 ms
7,068 KB
testcase_18 AC 105 ms
7,520 KB
testcase_19 AC 125 ms
8,492 KB
testcase_20 AC 64 ms
6,820 KB
testcase_21 AC 129 ms
8,692 KB
testcase_22 AC 32 ms
6,816 KB
testcase_23 AC 11 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

long long dfs(vector<long long> a, int d = 1<<30) {
  vector<long long> b, c;
  for (long long x: a) {
    if (x & d)
      b.push_back(x ^ d);
    else
      c.push_back(x);
  }

  if (d == 1) return (b.size() && c.size()) ? 1 : 0;
  if (!c.size()) return dfs(b, d>>1);
  if (!b.size()) return dfs(c, d>>1);
  
  long long ret = min(dfs(b, d>>1), dfs(c, d>>1));
  return d | ret;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

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

  cout << dfs(a) << endl;
  
  return 0;
}
0