結果

問題 No.130 XOR Minimax
ユーザー rpy3cpprpy3cpp
提出日時 2015-07-10 11:36:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 436 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 504 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,996 KB
最終ジャッジ日時 2024-09-12 22:35:34
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
16,960 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 52 ms
12,748 KB
testcase_05 AC 71 ms
21,720 KB
testcase_06 AC 150 ms
23,652 KB
testcase_07 AC 152 ms
23,832 KB
testcase_08 AC 436 ms
23,996 KB
testcase_09 AC 54 ms
12,928 KB
testcase_10 AC 66 ms
15,480 KB
testcase_11 AC 122 ms
19,052 KB
testcase_12 AC 43 ms
12,160 KB
testcase_13 AC 107 ms
18,592 KB
testcase_14 AC 387 ms
23,268 KB
testcase_15 AC 35 ms
10,880 KB
testcase_16 AC 286 ms
17,620 KB
testcase_17 AC 293 ms
18,004 KB
testcase_18 AC 314 ms
18,632 KB
testcase_19 AC 366 ms
19,268 KB
testcase_20 AC 199 ms
16,512 KB
testcase_21 AC 386 ms
23,064 KB
testcase_22 AC 110 ms
13,292 KB
testcase_23 AC 56 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)) - 2)
    return divq(As, idx, 0, len(As))

def divq(As, idx, begin, end):
    if idx == 1 or end <= begin:
        return 0
    new_idx = idx >> 1
    if not(As[end-1] & new_idx) or As[begin] & new_idx:
        return divq(As, new_idx, begin, end)
    mid = bisect.bisect_left(As, (As[begin]&(-idx))+new_idx, begin, end)
    return new_idx + min(divq(As, new_idx, begin, mid), divq(As, new_idx, mid, end))

N, As = read_data()
print(solve(N, As))
0