結果

問題 No.130 XOR Minimax
ユーザー simansiman
提出日時 2020-10-21 13:08:12
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 11,476 KB
実行使用メモリ 56,400 KB
最終ジャッジ日時 2023-09-28 14:12:13
合計ジャッジ時間 17,726 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 83 ms
15,176 KB
testcase_02 AC 83 ms
15,116 KB
testcase_03 AC 84 ms
15,152 KB
testcase_04 AC 136 ms
22,212 KB
testcase_05 AC 636 ms
56,400 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

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

  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)
    ].max
  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