結果
問題 | No.130 XOR Minimax |
ユーザー | siman |
提出日時 | 2020-10-21 13:03:48 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 532 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 361,528 KB |
最終ジャッジ日時 | 2024-07-21 08:52:56 |
合計ジャッジ時間 | 9,289 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 76 ms
12,032 KB |
testcase_03 | AC | 77 ms
12,160 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
ソースコード
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)