Two Sets

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 x 1 to denote the xor of all numbers Petya has got left; and let’s introduce x 2 to denote the xor of all numbers he gave to Masha. Value (x 1 + x 2) 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 x 1.

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.

Examples

input

6
1 2 3 4 5 6

output

2 2 2 2 2 2

input

3
1000000000000 1000000000000 1000000000000

output

2 2 2

input

8
1 1 2 2 3 3 4 4

output

1 2 1 2 2 2 1 2

Solution:

#include <iostream>
#include <iomanip>
#include <stdio.h>
#include <set>
#include <vector>
#include <map>
#include <cmath>
#include <algorithm>
#include <memory.h>
#include <string>
#include <sstream>

using namespace std;

const int N = 222222;
const int m = 62;

long long a[N], b[N], mask[N];
int c[N], n, who[N];
int need[N], used[N];

bool can() {
int i, j, k;
for (i=0;i<n;i++) b[i] = a[i], mask[i] = 0, used[i] = 0;
  for (j=m-1;j>=0;j--)
if (need[j] != -1) {
who[j] = -1;
for (i=0;i<n;i++)
        if (!used[i] && (b[i] & (1LL << j))) {
          used[i] = 1;
          who[j] = i;
          mask[i] |= (1LL << j);
          for (k=0;k<n;k++)
            if (i != k && (b[k] & (1LL << j))) {
              b[k] ^= b[i];
              mask[k] ^= mask[i];
            }
          break;
        }
    }
  long long have = 0, ms = 0;
  for (j=m-1;j>=0;j--)
if (need[j] != -1) {
if ((!!(have & (1LL << j))) != need[j]) {
        if (who[j] == -1) return false;
        have ^= b[who[j]];
        ms ^= mask[who[j]];
      }
    }
  for (i=0;i<n;i++) c[i] = 2;
  for (j=0;j<m;j++)
    if (ms & (1LL << j)) c[who[j]] = 1;
  return true;
}

int main() {
//  freopen("in", "r", stdin);
//  freopen("out", "w", stdout);
  int i, j;
  scanf("%d", &n);
  for (i=0;i<n;i++) scanf("%I64d", &a[i]);
  long long X = 0;
  for (i=0;i<n;i++) X ^= a[i];
  for (j=0;j<m;j++) need[j] = -1;
  for (j=m-1;j>=0;j--)
if (!(X & (1LL << j))) {
      need[j] = 1;
      if (!can()) need[j] = 0;
    }
  for (j=m-1;j>=0;j--)
if (X & (1LL << j)) {
      need[j] = 0;
      if (!can()) need[j] = 1;
    }
  can();
  for (i=0;i<n-1;i++) printf("%d ", c[i]);
  printf("%d\n", c[n-1]);
  return 0;
}