結果

問題 No.130 XOR Minimax
ユーザー mkawa2mkawa2
提出日時 2020-01-21 12:14:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 428 ms / 5,000 ms
コード長 1,110 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,292 KB
最終ジャッジ日時 2024-09-12 22:55:08
合計ジャッジ時間 5,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
16,840 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 53 ms
12,732 KB
testcase_05 AC 71 ms
21,800 KB
testcase_06 AC 428 ms
23,236 KB
testcase_07 AC 363 ms
22,788 KB
testcase_08 AC 312 ms
22,720 KB
testcase_09 AC 87 ms
12,928 KB
testcase_10 AC 119 ms
15,488 KB
testcase_11 AC 295 ms
18,800 KB
testcase_12 AC 58 ms
12,160 KB
testcase_13 AC 252 ms
18,256 KB
testcase_14 AC 321 ms
23,292 KB
testcase_15 AC 33 ms
11,008 KB
testcase_16 AC 228 ms
17,496 KB
testcase_17 AC 235 ms
17,704 KB
testcase_18 AC 254 ms
18,212 KB
testcase_19 AC 299 ms
19,336 KB
testcase_20 AC 154 ms
16,604 KB
testcase_21 AC 316 ms
23,180 KB
testcase_22 AC 83 ms
13,312 KB
testcase_23 AC 46 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *

int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    def dfs(l, r, d=31):
        if r - l == 1: return 0
        for i, a in enumerate(aa[l:r], l):
            if a >> d & 1:
                m = i
                break
        else:
            m = l
        if m == l:
            return dfs(l, r, d - 1)
        return (1 << d) + min(dfs(l, m, d - 1), dfs(m, r, d - 1))

    n = II()
    aa = list(set(LI()))
    aa.sort()
    print(dfs(0, len(aa)))

main()
0