結果

問題 No.130 XOR Minimax
ユーザー simansiman
提出日時 2020-10-21 13:03:48
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 11,424 KB
実行使用メモリ 23,032 KB
最終ジャッジ日時 2023-09-28 14:11:41
合計ジャッジ時間 11,047 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 82 ms
15,068 KB
testcase_03 AC 80 ms
15,308 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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