結果
問題 | No.130 XOR Minimax |
ユーザー | rpy3cpp |
提出日時 | 2015-07-10 02:00:47 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 662 bytes |
コンパイル時間 | 121 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 23,924 KB |
最終ジャッジ日時 | 2024-07-08 01:51:40 |
合計ジャッジ時間 | 3,121 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 48 ms
12,732 KB |
testcase_05 | AC | 65 ms
21,724 KB |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
import bisect def read_data(): N = int(input()) As = list(map(int, input().split())) return N, As def solve(N, As): As = list(set(As)) As.sort() maxA = As[-1] if maxA == 0: return 0 idx = 1 << (len(bin(maxA)) - 3) return divq(As, idx, 0, len(As)) def divq(As, idx, begin, end): if idx == 0: return 0 new_idx = idx >> 1 if not(As[end-1] & idx) or As[begin] & idx: return divq(As, new_idx, begin, end) mid = bisect.bisect_left(As, As[begin] + idx, begin, end) + 1 return idx + min(divq(As, new_idx, begin, mid), divq(As, new_idx, mid, end)) N, As = read_data() print(solve(N, As))