给定 $n$ 个两两不同的正整数 $a_1, a_2, \dots, a_n$,$a_i < 2^k$ . Problem 1(经典问题) 求 $a_i \xor a_j$ 的最大值,$ 1\le i, j \le n $ . 解法 字典树 Problem 2 从 $n$ 个数中任选出一些数,求异或和的最大值. Let the length of a number be the number of digits needed to write it out in binary, excludin…