結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
17,368 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 49 ms
12,148 KB
testcase_05 AC 66 ms
18,788 KB
testcase_06 AC 151 ms
25,892 KB
testcase_07 AC 152 ms
27,220 KB
testcase_08 AC 438 ms
27,244 KB
testcase_09 AC 55 ms
12,544 KB
testcase_10 AC 67 ms
15,360 KB
testcase_11 AC 121 ms
19,376 KB
testcase_12 AC 43 ms
12,160 KB
testcase_13 AC 108 ms
18,312 KB
testcase_14 AC 395 ms
25,968 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 288 ms
19,356 KB
testcase_17 AC 297 ms
19,788 KB
testcase_18 AC 317 ms
20,228 KB
testcase_19 AC 372 ms
21,412 KB
testcase_20 AC 201 ms
16,768 KB
testcase_21 AC 390 ms
26,064 KB
testcase_22 AC 112 ms
13,184 KB
testcase_23 AC 55 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=input()
A=list(set(map(int,input().split())))
A.sort()
def f(i,b,e):
 if i==1 or e<=b: return 0
 j=i>>1
 if not(A[e-1]&j) or A[b]&j: return f(j,b,e)
 m=bisect.bisect_left(A,-i&A[b]|j,b,e)
 return j+min(f(j,b,m),f(j,m,e))
print(f(1<<len(bin(A[-1])),0,len(A)) if A[-1] else 0)
0