結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
11,956 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 12 ms
6,944 KB
testcase_04 AC 48 ms
8,064 KB
testcase_05 AC 62 ms
14,992 KB
testcase_06 AC 873 ms
61,476 KB
testcase_07 AC 887 ms
59,960 KB
testcase_08 AC 597 ms
19,380 KB
testcase_09 AC 124 ms
13,808 KB
testcase_10 AC 187 ms
17,804 KB
testcase_11 AC 526 ms
37,816 KB
testcase_12 AC 65 ms
10,180 KB
testcase_13 AC 439 ms
33,300 KB
testcase_14 AC 544 ms
17,484 KB
testcase_15 AC 14 ms
6,940 KB
testcase_16 AC 370 ms
14,104 KB
testcase_17 AC 384 ms
14,436 KB
testcase_18 AC 418 ms
15,104 KB
testcase_19 AC 502 ms
16,664 KB
testcase_20 AC 235 ms
11,388 KB
testcase_21 AC 533 ms
17,452 KB
testcase_22 AC 107 ms
8,540 KB
testcase_23 AC 36 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    one  = [ai ^ (ai & (1 << shift)) for ai in a if     ai & (1 << shift) and ai >> (shift+1) == 0]
    zero = [ai ^ (ai & (1 << shift)) for ai in a if not ai & (1 << shift) and ai >> (shift+1) == 0]
    
    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