結果
問題 | No.130 XOR Minimax |
ユーザー | siman |
提出日時 | 2020-10-21 13:08:12 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 53,248 KB |
最終ジャッジ日時 | 2024-07-21 08:53:24 |
合計ジャッジ時間 | 18,272 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 90 ms
12,032 KB |
testcase_02 | AC | 90 ms
12,032 KB |
testcase_03 | AC | 89 ms
12,160 KB |
testcase_04 | AC | 137 ms
19,200 KB |
testcase_05 | AC | 669 ms
53,248 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
ソースコード
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)