結果

問題 No.130 XOR Minimax
ユーザー しらっ亭しらっ亭
提出日時 2015-07-14 12:07:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 316 ms / 5,000 ms
コード長 570 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,116 KB
最終ジャッジ日時 2024-09-12 22:36:17
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
15,284 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 213 ms
35,736 KB
testcase_05 AC 272 ms
41,116 KB
testcase_06 AC 293 ms
29,124 KB
testcase_07 AC 316 ms
29,256 KB
testcase_08 AC 262 ms
21,716 KB
testcase_09 AC 73 ms
13,952 KB
testcase_10 AC 97 ms
15,704 KB
testcase_11 AC 264 ms
26,876 KB
testcase_12 AC 50 ms
12,416 KB
testcase_13 AC 217 ms
24,068 KB
testcase_14 AC 266 ms
19,888 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 188 ms
17,060 KB
testcase_17 AC 196 ms
17,368 KB
testcase_18 AC 208 ms
17,920 KB
testcase_19 AC 244 ms
19,240 KB
testcase_20 AC 128 ms
14,760 KB
testcase_21 AC 257 ms
19,956 KB
testcase_22 AC 73 ms
12,928 KB
testcase_23 AC 41 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(d, a):
    if len(a) == 1:
        return 0

    a0 = []
    a1 = []
    b = 1 << d
    for n in a:
        if n & b:
            a1.append(n)
        else:
            a0.append(n)

    if not a0 or not a1:
        if d == 0:
            return 0
        return dfs(d - 1, a)
    else:
        if d == 0:
            return 1
        return b + min(dfs(d - 1, a0), dfs(d - 1, a1))


def solve(N, A):
    return dfs(30, A)


def main():
    N = int(input())
    A = list(map(int, input().split()))

    print(solve(N, A))


if __name__ == '__main__':
    main()
0