結果

問題 No.130 XOR Minimax
ユーザー 👑 hahhohahho
提出日時 2021-03-26 17:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 5,000 ms
コード長 490 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 90,776 KB
最終ジャッジ日時 2024-11-28 14:04:16
合計ジャッジ時間 4,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
80,648 KB
testcase_01 AC 39 ms
53,500 KB
testcase_02 AC 40 ms
52,756 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 57 ms
76,904 KB
testcase_05 AC 63 ms
84,012 KB
testcase_06 AC 132 ms
89,424 KB
testcase_07 AC 136 ms
90,776 KB
testcase_08 AC 147 ms
90,260 KB
testcase_09 AC 103 ms
76,488 KB
testcase_10 AC 115 ms
77,444 KB
testcase_11 AC 142 ms
88,068 KB
testcase_12 AC 85 ms
76,268 KB
testcase_13 AC 120 ms
84,948 KB
testcase_14 AC 225 ms
89,028 KB
testcase_15 AC 52 ms
64,220 KB
testcase_16 AC 125 ms
84,292 KB
testcase_17 AC 158 ms
84,496 KB
testcase_18 AC 218 ms
86,056 KB
testcase_19 AC 228 ms
87,676 KB
testcase_20 AC 105 ms
80,088 KB
testcase_21 AC 187 ms
88,872 KB
testcase_22 AC 84 ms
76,468 KB
testcase_23 AC 97 ms
76,280 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)
        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