結果
問題 | No.130 XOR Minimax |
ユーザー | Mao-beta |
提出日時 | 2024-03-15 01:02:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,779 bytes |
コンパイル時間 | 462 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 600,040 KB |
最終ジャッジ日時 | 2024-09-29 23:55:12 |
合計ジャッジ時間 | 33,310 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,585 ms
254,948 KB |
testcase_01 | AC | 28 ms
11,136 KB |
testcase_02 | AC | 27 ms
11,008 KB |
testcase_03 | AC | 27 ms
11,136 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | MLE | - |
testcase_09 | AC | 729 ms
89,216 KB |
testcase_10 | AC | 1,209 ms
134,504 KB |
testcase_11 | AC | 4,740 ms
460,620 KB |
testcase_12 | AC | 369 ms
47,616 KB |
testcase_13 | AC | 3,580 ms
367,664 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 60 ms
14,976 KB |
testcase_16 | AC | 3,745 ms
347,876 KB |
testcase_17 | AC | 3,873 ms
362,368 KB |
testcase_18 | AC | 4,094 ms
389,120 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 2,387 ms
227,700 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1,009 ms
109,824 KB |
testcase_23 | AC | 269 ms
39,424 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 = [Node()] 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].child[b] == -1: self.D[now].child[b] = len(self.D) now = self.D[now].child[b] self.D.append(Node()) def dfs(self): ans = 1 << self.bit stack = deque() stack.append([0, 0]) while stack: now, res = stack.pop() l, r = self.D[now].child 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()