結果

問題 No.130 XOR Minimax
ユーザー Coki628Coki628
提出日時 2020-01-13 01:25:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 802 ms / 5,000 ms
コード長 1,381 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,268 KB
最終ジャッジ日時 2024-09-12 22:55:02
合計ジャッジ時間 9,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 369 ms
15,252 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 341 ms
35,852 KB
testcase_05 AC 394 ms
40,268 KB
testcase_06 AC 437 ms
29,044 KB
testcase_07 AC 456 ms
28,240 KB
testcase_08 AC 802 ms
21,772 KB
testcase_09 AC 98 ms
13,824 KB
testcase_10 AC 136 ms
15,872 KB
testcase_11 AC 380 ms
27,104 KB
testcase_12 AC 64 ms
12,288 KB
testcase_13 AC 309 ms
24,140 KB
testcase_14 AC 697 ms
20,032 KB
testcase_15 AC 37 ms
10,880 KB
testcase_16 AC 495 ms
17,028 KB
testcase_17 AC 516 ms
17,340 KB
testcase_18 AC 551 ms
17,796 KB
testcase_19 AC 655 ms
19,348 KB
testcase_20 AC 333 ms
14,972 KB
testcase_21 AC 687 ms
20,060 KB
testcase_22 AC 172 ms
12,928 KB
testcase_23 AC 73 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10 ** 9)
INF = 10 ** 18
MOD = 10 ** 9 + 7

N = INT()
A = LIST()

def rec(li, k):
    if not li or k < 0:
        return 0
    li1, li2 = [], []
    # 今見ている桁が1の要素と0の要素で振り分ける
    for a in li:
        if a & 1<<k:
            li1.append(a)
        else:
            li2.append(a)
    # 全て片方にあれば、この桁は(最大値になりうる)全要素で0にできる
    if not li1 or not li2:
        return rec(li, k - 1)
    else:
        # 0も1もあれば、この桁が(最大値になりうる)いずれかの要素で立つのは確定で、どちらを立たせた方が得かを下の桁に調べに行く
        return min(rec(li1, k - 1), rec(li2, k - 1)) + (1 << k)

print(rec(A, 30))
0