题库练习 Divide, XOR, and Conquer
← 上一题 下一题 →

A16085 | Divide, XOR, and Conquer

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

题目描述

You are given an array of $n$ integers $a_1, a_2, \ldots, a_n$ .

In one operation you split the array into two parts: a non-empty prefix and a non-empty suffix. The value of each part is the [bitwise XOR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR) of all elements in it. Next, discard the part with the smaller value. If both parts have equal values, you can choose which one to discard. Replace the array with the remaining part.

The operations are being performed until the length of the array becomes $1$ . For each $i$ ( $1 \le i \le n$ ), determine whether it is possible to achieve the state when only the $i$ -th element (with respect to the original numbering) remains.

Formally, you have two numbers $l$ and $r$ , initially $l = 1$ and $r = n$ . The current state of the array is $[a_l, a_{l+1}, \ldots, a_r]$ .

As long as $l < r$ , you apply the following operation:

- Choose an arbitrary $k$ from the set $\{l, l + 1, \ldots, r - 1\}$ . Denote $x = a_l \oplus a_{l + 1} \oplus \ldots \oplus a_k$ and $y = a_{k + 1} \oplus a_{k + 2} \oplus \ldots \oplus a_{r}$ , where $\oplus$ denotes the bitwise XOR operation.
- If $x < y$ , set $l = k + 1$ .
- If $x > y$ , set $r = k$ .
- If $x = y$ , either set $l = k + 1$ , or set $r = k$ .

For each $i$ ( $1 \le i \le n$ ), determine whether it is possible to achieve $l = r = i$ .

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10\,000$ ). The description of the test cases follows.

The first line of each test case contains one integer $n$ ( $1 \le n \le 10\,000$ ).

The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i < 2^{60}$ ).

It is guaranteed that the sum of $n$ over all test cases does not exceed $10\,000$ .

输出格式

For each test case, output a single string of length $n$ where the $i$ -th element is equal to 1 if it is possible to achieve $l = r = i$ and is equal to 0 otherwise.

输入输出样例

输入 #1
6
6
3 2 1 3 7 4
5
1 1 1 1 1
10
1 2 4 8 4 1 2 3 4 5
5
0 0 0 0 0
5
1 2 3 0 1
1
100500
输出 #1
111111
10101
0001000000
11111
11001
1
C++ 编辑器
输入
输出