結果

問題 No.130 XOR Minimax
ユーザー 👑 hahhohahho
提出日時 2021-03-26 18:22:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 494 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 90,732 KB
最終ジャッジ日時 2024-11-28 15:05:52
合計ジャッジ時間 3,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
81,252 KB
testcase_01 AC 33 ms
52,640 KB
testcase_02 AC 33 ms
54,092 KB
testcase_03 AC 35 ms
53,564 KB
testcase_04 AC 49 ms
77,984 KB
testcase_05 AC 58 ms
83,076 KB
testcase_06 AC 93 ms
89,372 KB
testcase_07 AC 94 ms
90,464 KB
testcase_08 AC 119 ms
90,732 KB
testcase_09 AC 123 ms
76,900 KB
testcase_10 AC 90 ms
77,372 KB
testcase_11 AC 126 ms
88,088 KB
testcase_12 AC 75 ms
76,256 KB
testcase_13 AC 127 ms
85,404 KB
testcase_14 AC 116 ms
89,128 KB
testcase_15 AC 40 ms
61,836 KB
testcase_16 AC 171 ms
84,380 KB
testcase_17 AC 110 ms
84,600 KB
testcase_18 AC 110 ms
85,596 KB
testcase_19 AC 136 ms
87,764 KB
testcase_20 AC 107 ms
80,788 KB
testcase_21 AC 128 ms
89,060 KB
testcase_22 AC 93 ms
76,660 KB
testcase_23 AC 62 ms
75,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
max2 = lambda x,y: x if x > y else y
min2 = lambda x,y: x if x < y else y

def solve(a):
    a.sort()
    def rec(d,l,r):
        if l + 1 == r or d == 0:
            return 0
        i = a[l]&(-1 << d)|(1<<(d-1))
        m = bisect_left(a,i,l,r)
        if l == m or r == m:
            return rec(d-1,l,r)
        return min2(rec(d-1,l,m),rec(d-1,m,r))|(1<<(d-1))
    return rec(32,0,len(a))


n = int(input())
a = list(map(int,input().split()))
print(solve(a))
0