Preparando MOJI

Two Sets

2000ms 262144K

Description:

Little Petya likes numbers a lot. Recently his mother has presented him a collection of n non-negative integers. There's only one thing Petya likes more than numbers: playing with little Masha. He immediately decided to give a part of his new collection to her. To make the game even more interesting, Petya decided to give Masha such collection of numbers for which the following conditions fulfill:

  • Let's introduce x1 to denote the xor of all numbers Petya has got left; and let's introduce x2 to denote the xor of all numbers he gave to Masha. Value (x1 + x2) must be as large as possible.
  • If there are multiple ways to divide the collection so that the previous condition fulfilled, then Petya minimizes the value x1.

The xor operation is a bitwise excluding "OR", that is denoted as "xor" in the Pascal language and "^" in C/C++/Java.

Help Petya divide the collection as described above. If there are multiple suitable ways to divide it, find any of them. Please note that after Petya gives a part of his numbers to Masha, he may have no numbers left. The reverse situation is also possible, when Petya gives nothing to Masha. In both cases we must assume that the xor of an empty set of numbers equals 0.

Input:

The first line contains integer n (1 ≤ n ≤ 105), showing how many numbers Petya's mother gave him. The second line contains the actual space-separated numbers. They are all integer, non-negative and do not exceed 1018.

Output:

Print n space-separated integers, the i-th of them should equal either 1, if Petya keeps the number that follows i-th in his collection, or it should equal 2, if Petya gives the corresponding number to Masha. The numbers are indexed in the order in which they are given in the input.

Sample Input:

6
1 2 3 4 5 6

Sample Output:

2 2 2 2 2 2

Sample Input:

3
1000000000000 1000000000000 1000000000000

Sample Output:

2 2 2

Sample Input:

8
1 1 2 2 3 3 4 4

Sample Output:

1 2 1 2 2 2 1 2

Informação

Codeforces

Provedor Codeforces

Código CF251D

Tags

bitmasksmath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:40:55

Relacionados

Nada ainda