結果
問題 | No.130 XOR Minimax |
ユーザー | Mao-beta |
提出日時 | 2024-03-15 01:03:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,223 ms / 5,000 ms |
コード長 | 1,759 bytes |
コンパイル時間 | 417 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 456,840 KB |
最終ジャッジ日時 | 2024-09-29 23:55:30 |
合計ジャッジ時間 | 16,903 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 503 ms
226,884 KB |
testcase_01 | AC | 44 ms
57,020 KB |
testcase_02 | AC | 44 ms
57,096 KB |
testcase_03 | AC | 44 ms
57,008 KB |
testcase_04 | AC | 981 ms
409,964 KB |
testcase_05 | AC | 905 ms
456,836 KB |
testcase_06 | AC | 990 ms
456,792 KB |
testcase_07 | AC | 984 ms
456,840 KB |
testcase_08 | AC | 1,104 ms
456,788 KB |
testcase_09 | AC | 188 ms
130,920 KB |
testcase_10 | AC | 256 ms
159,544 KB |
testcase_11 | AC | 944 ms
394,104 KB |
testcase_12 | AC | 107 ms
93,324 KB |
testcase_13 | AC | 757 ms
337,580 KB |
testcase_14 | AC | 1,217 ms
398,872 KB |
testcase_15 | AC | 65 ms
73,928 KB |
testcase_16 | AC | 802 ms
309,032 KB |
testcase_17 | AC | 834 ms
315,896 KB |
testcase_18 | AC | 889 ms
320,656 KB |
testcase_19 | AC | 1,027 ms
357,480 KB |
testcase_20 | AC | 456 ms
211,204 KB |
testcase_21 | AC | 1,223 ms
396,504 KB |
testcase_22 | AC | 227 ms
140,300 KB |
testcase_23 | AC | 112 ms
97,664 KB |
ソースコード
import sys import math import bisect from heapq import heapify, heappop, heappush from collections import deque, defaultdict, Counter from functools import lru_cache from itertools import accumulate, combinations, permutations, product sys.setrecursionlimit(1000000) MOD = 10 ** 9 + 7 MOD99 = 998244353 input = lambda: sys.stdin.readline().strip() NI = lambda: int(input()) NMI = lambda: map(int, input().split()) NLI = lambda: list(NMI()) SI = lambda: input() SMI = lambda: input().split() SLI = lambda: list(SMI()) EI = lambda m: [NLI() for _ in range(m)] class Node: def __init__(self): self.child = [-1] * 2 class BinaryTrie: def __init__(self, bit=32): self.D = [[-1, -1]] self.bit = bit def add(self, x): now = 0 for i in range(self.bit-1, -1, -1): b = (x>>i) & 1 if self.D[now][b] == -1: self.D[now][b] = len(self.D) now = self.D[now][b] self.D.append([-1, -1]) def dfs(self): ans = 1 << self.bit stack = deque() stack.append([0, 0]) while stack: now, res = stack.pop() l, r = self.D[now] if l == r == -1: ans = min(ans, res) elif l == -1 or r == -1: res <<= 1 if l == -1: stack.append([r, res]) else: stack.append([l, res]) else: res = (res << 1) | 1 stack.append([l, res]) stack.append([r, res]) return ans def main(): N = NI() A = NLI() trie = BinaryTrie() for a in A: trie.add(a) print(trie.dfs()) if __name__ == "__main__": main()