#P10524. [XJTUPC 2024] 循环移位

[XJTUPC 2024] 循环移位

Problem Description

Given an array aia_i of length 2n2^n (0i<2n0 \leq i < 2^n), you may perform cyclic shifts any number of times.

Find the maximum values of i=02n1aii\sum_{i=0}^{2^n-1} a_i \oplus i, i=02n1ai&i\sum_{i=0}^{2^n-1} a_i \& i, and i=02n1aii\sum_{i=0}^{2^n-1} a_i | i. Here, \oplus, &\&, and | denote bitwise XOR, bitwise AND, and bitwise OR, respectively.

For an array xix_i of length mm (0i<m0 \leq i < m), the result after one cyclic shift is xix'_i:

$$x'_i = \left\{ \begin{array}{ll} x_{i - 1} & i \neq 0 \\ x_{m - 1} & i = 0 \end{array}\right.$$

Input Format

The first line contains an integer nn (1n201 \leq n \leq 20), as described above.

The next line contains 2n2^n integers aia_i (0ai<2n0 \leq a_i < 2^n), representing the given array.

Output Format

Output one line with three integers separated by spaces, which are the maximum values of i=02n1aii\sum_{i=0}^{2^n-1} a_i \oplus i, i=02n1ai&i\sum_{i=0}^{2^n-1} a_i \& i, and i=02n1aii\sum_{i=0}^{2^n-1} a_i | i.

2
1 3 2 2

8 5 11

4
1 1 4 5 1 4 1 9 1 9 8 1 0 0 0 0

149 41 157

Hint

Translated by ChatGPT 5