結果

問題 No.130 XOR Minimax
ユーザー HachimoriHachimori
提出日時 2015-01-17 16:48:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,012 ms / 5,000 ms
コード長 999 bytes
コンパイル時間 773 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 35,556 KB
最終ジャッジ日時 2024-09-12 22:33:56
合計ジャッジ時間 11,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
10,044 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 427 ms
33,080 KB
testcase_05 AC 442 ms
35,556 KB
testcase_06 AC 497 ms
24,160 KB
testcase_07 AC 503 ms
23,780 KB
testcase_08 AC 1,012 ms
15,056 KB
testcase_09 AC 96 ms
9,264 KB
testcase_10 AC 140 ms
10,700 KB
testcase_11 AC 438 ms
21,464 KB
testcase_12 AC 54 ms
7,808 KB
testcase_13 AC 357 ms
18,356 KB
testcase_14 AC 866 ms
13,508 KB
testcase_15 AC 20 ms
6,944 KB
testcase_16 AC 609 ms
11,324 KB
testcase_17 AC 632 ms
11,592 KB
testcase_18 AC 680 ms
11,980 KB
testcase_19 AC 805 ms
13,196 KB
testcase_20 AC 401 ms
9,572 KB
testcase_21 AC 855 ms
13,588 KB
testcase_22 AC 196 ms
7,824 KB
testcase_23 AC 68 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
#coding:utf8

def read():
    N = input()
    return map(int, raw_input().split())


def rec(bit, vList):
    if bit == -1:
        return (0, 0)
    
    zeroList = []
    oneList = []
    
    for v in vList:
        if v & (1 << bit):
            oneList.append(v)
        else:
            zeroList.append(v)    

    if zeroList and oneList:
        (x1, val1) = rec(bit - 1, oneList)
        (x2, val2) = rec(bit - 1, zeroList)
        if val1 < val2:
            return (x1             , val1 + (1 << bit))
        else:
            return (x2 + (1 << bit), val2 + (1 << bit))
        
    elif not zeroList and     oneList:
        (x, val) = rec(bit - 1, oneList)
        return (x + (1 << bit), val)
        
    elif     zeroList and not oneList:
        (x, val) = rec(bit - 1, zeroList)
        return (x, val)
    
    else:
        assert False
        

def work(vList):
    (x, val) = rec(32, vList)
    print val


if __name__ == "__main__":
    work(read())
0