結果

問題 No.130 XOR Minimax
ユーザー simansiman
提出日時 2020-10-21 13:12:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,711 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-09-12 22:59:56
合計ジャッジ時間 17,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 832 ms
18,296 KB
testcase_01 AC 87 ms
12,416 KB
testcase_02 AC 88 ms
12,416 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 135 ms
19,328 KB
testcase_05 AC 670 ms
53,248 KB
testcase_06 AC 588 ms
25,984 KB
testcase_07 AC 840 ms
38,428 KB
testcase_08 AC 1,711 ms
25,088 KB
testcase_09 AC 186 ms
15,360 KB
testcase_10 AC 234 ms
16,256 KB
testcase_11 AC 522 ms
24,320 KB
testcase_12 AC 138 ms
13,824 KB
testcase_13 AC 437 ms
23,680 KB
testcase_14 AC 1,488 ms
23,168 KB
testcase_15 AC 108 ms
12,800 KB
testcase_16 AC 1,055 ms
23,552 KB
testcase_17 AC 1,085 ms
23,808 KB
testcase_18 AC 1,178 ms
24,704 KB
testcase_19 AC 1,424 ms
22,740 KB
testcase_20 AC 757 ms
17,788 KB
testcase_21 AC 1,481 ms
23,168 KB
testcase_22 AC 398 ms
15,872 KB
testcase_23 AC 188 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

def dfs(nums, mb)
  return nums.max if mb < 0

  base = 1 << mb
  cand = nums.group_by { |x| x[mb] }
  cand.default = []

  v = 0

  if cand[0].size > 0 && cand[1].size > 0
    v = [
      dfs(cand[0].map { |x| x ^ base }, mb - 1),
      dfs(cand[1], mb - 1)
    ].min
  elsif cand[0].size > 0
    v = dfs(cand[0], mb - 1)
  elsif cand[1].size > 0
    v = dfs(cand[1].map { |x| x ^ base }, mb - 1)
  end

  v
end

mb = A.map(&:bit_length).max
puts dfs(A, mb - 1)
0