CF1013B And

There is an array with n elements a1, a2, ..., an and the number x.

In one operation you can select some i (1 ≤ i ≤ n) and replace element ai with ai & x, where & denotes the bitwise and operation.

You want the array to have at least two equal elements after applying some operations (possibly, none). In other words, there should be at least two distinct indices i ≠ j such that ai = aj. Determine whether it is possible to achieve and, if possible, the minimal number of operations to apply.

Input

The first line contains integers n and x (2 ≤ n ≤ 100 000, 1 ≤ x ≤ 100 000), number of elements in the array and the number to and with.

The second line contains n integers ai (1 ≤ ai ≤ 100 000), the elements of the array.

Output

Print a single integer denoting the minimal number of operations to do, or -1, if it is impossible.

Examples

Input
4 3
1 2 3 7
Output
1
Input
2 228
1 1
Output
0
Input
3 7
1 2 3
Output
-1

Note

In the first example one can apply the operation to the last element of the array. That replaces 7 with 3, so we achieve the goal in one move.

In the second example the array already has two equal elements.

In the third example applying the operation won't change the array at all, so it is impossible to make some pair of elements equal.

题意:给定一个长度为 n(n100000) 的序列 ai(ai100000),并给定一个数 x(x100000) 。
每一步可以将序列中的一个数与上 x
求使序列中出现两个相等的数的最小步数。如果不可能则输出 1

思路:给出两个数 n 与 x,以及长度为 n 的一个数组 a[n],现在问数组中是否有相同的元素,如果有输出0,如果没有则进行 a[i] & x 操作,然后与原数组相比,如果有相同的元素,就输出1,如果还是没有,就看是否存在一个数操作完后与这个数相等,如果存在就输出2,否则,输出-1。

#include <stdio.h>
#include <algorithm>
#include <iostream>
using namespace std;
int a[200005],b[200005];
int main()
{
	int i,j,k,n,x,s=-1;
	cin>>n>>x;
	while(n--){
		cin>>k;
		if(a[k]!=0){
			s=0;
		}
		if(s!=0 && (a[k&x]!=0||b[k]!=0)){
			s=1;
		}
		if(s==-1 && b[k&x]){
			s=2;
		}
		a[k]++;
		b[k&x]++;
	}
	cout<<s<<endl;
	return 0;
}

  

原文地址:https://www.cnblogs.com/clb123/p/10756747.html