結果

問題 No.130 XOR Minimax
ユーザー roiti46roiti46
提出日時 2015-02-26 00:02:35
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,164 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 61,516 KB
最終ジャッジ日時 2024-09-12 22:34:43
合計ジャッジ時間 11,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
11,956 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 48 ms
7,936 KB
testcase_05 AC 62 ms
14,992 KB
testcase_06 AC 723 ms
61,516 KB
testcase_07 AC 736 ms
59,832 KB
testcase_08 AC 1,164 ms
19,332 KB
testcase_09 AC 119 ms
13,812 KB
testcase_10 AC 173 ms
17,804 KB
testcase_11 AC 447 ms
37,812 KB
testcase_12 AC 65 ms
10,176 KB
testcase_13 AC 385 ms
33,184 KB
testcase_14 AC 964 ms
17,352 KB
testcase_15 AC 20 ms
6,944 KB
testcase_16 AC 681 ms
14,172 KB
testcase_17 AC 709 ms
14,440 KB
testcase_18 AC 760 ms
15,100 KB
testcase_19 AC 898 ms
16,664 KB
testcase_20 AC 448 ms
11,392 KB
testcase_21 AC 952 ms
17,452 KB
testcase_22 AC 214 ms
8,668 KB
testcase_23 AC 71 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def rec(shift, a):
    if shift < 0: return 0

    one  = [ai ^ (ai & (1 << shift)) for ai in a if     ai & (1 << shift)]
    zero = [ai ^ (ai & (1 << shift)) for ai in a if not ai & (1 << shift)]
    
    if not zero: return rec(shift - 1,  one)
    if not  one: return rec(shift - 1, zero)

    return (1 << shift) + min(rec(shift - 1, zero), rec(shift - 1, one))

N = int(raw_input())
A = list(set(map(int,raw_input().split())))
print rec(30,A)
0