题库练习 Absolute Maximization
← 上一题 下一题 →

A15493 | Absolute Maximization

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given an array $a$ of length $n$ . You can perform the following operation several (possibly, zero) times:

- Choose $i$ , $j$ , $b$ : Swap the $b$ -th digit in the binary representation of $a_i$ and $a_j$ .

Find the maximum possible value of $\max(a) - \min(a)$ .

In a binary representation, bits are numbered from right (least significant) to left (most significant). Consider that there are an infinite number of leading zero bits at the beginning of any binary representation.

For example, swap the $0$ -th bit for $4=100_2$ and $3=11_2$ will result $101_2=5$ and $10_2=2$ . Swap the $2$ -nd bit for $4=100_2$ and $3=11_2$ will result $000_2=0_2=0$ and $111_2=7$ .

Here, $\max(a)$ denotes the maximum element of array $a$ and $\min(a)$ denotes the minimum element of array $a$ .

The binary representation of $x$ is $x$ written in base $2$ . For example, $9$ and $6$ written in base $2$ are $1001$ and $110$ , respectively.

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 128$ ) — the number of testcases.

The first line of each test case contains a single integer $n$ ( $3 \le n \le 512$ ) — the length of array $a$ .

The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i < 1024$ ) — the elements of array $a$ .

It's guaranteed that the sum of $n$ over all testcases does not exceed $512$ .

输出格式

For each testcase, print one integer — the maximum possible value of $\max(a) - \min(a)$ .

输入输出样例

输入 #1
4
3
1 0 1
4
5 5 5 5
5
1 2 3 4 5
7
20 85 100 41 76 49 36
输出 #1
1
0
7
125
C++ 编辑器
输入
输出