結果

問題 No.130 XOR Minimax
ユーザー ntudantuda
提出日時 2022-02-13 10:59:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 5,000 ms
コード長 718 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 91,520 KB
最終ジャッジ日時 2024-06-29 05:28:11
合計ジャッジ時間 6,785 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
81,664 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 42 ms
54,272 KB
testcase_04 AC 61 ms
79,232 KB
testcase_05 AC 68 ms
85,120 KB
testcase_06 AC 128 ms
90,292 KB
testcase_07 AC 135 ms
91,520 KB
testcase_08 AC 487 ms
91,136 KB
testcase_09 AC 109 ms
77,556 KB
testcase_10 AC 117 ms
78,448 KB
testcase_11 AC 152 ms
88,660 KB
testcase_12 AC 96 ms
76,928 KB
testcase_13 AC 142 ms
85,656 KB
testcase_14 AC 424 ms
89,856 KB
testcase_15 AC 74 ms
76,440 KB
testcase_16 AC 327 ms
84,912 KB
testcase_17 AC 350 ms
84,736 KB
testcase_18 AC 371 ms
86,252 KB
testcase_19 AC 417 ms
88,192 KB
testcase_20 AC 251 ms
81,024 KB
testcase_21 AC 443 ms
89,728 KB
testcase_22 AC 167 ms
77,492 KB
testcase_23 AC 110 ms
77,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Yuki130
No.130 XOR Minimax
'''
from collections import deque
from bisect import bisect_left

N = int(input())
A = list(map(int, input().split()))
A.sort()
amax = max(A)
n = amax.bit_length() - 1
q = deque()  # target,left,right,value
q.append((2 ** n, n, 0, N, 0))
ans = 10 ** 10
while len(q) > 0:
    (x, i, l, r, v) = q.pop()
    if i < 0:
        if ans > v:
            ans = v
        continue
    y = bisect_left(A, x)
    if y == l:
        q.append((x + 2 ** (i - 1), i - 1, y, r, v * 2))
    elif y == r:
        q.append((x - 2 ** (i - 1), i - 1, l, y, v * 2))
    else:
        q.append((x + 2 ** (i - 1), i - 1, y, r, v * 2 + 1))
        q.append((x - 2 ** (i - 1), i - 1, l, y, v * 2 + 1))
print(ans)
0