-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathand.cpp
49 lines (48 loc) · 812 Bytes
/
and.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, x;
cin >> n >> x;
map<int, int> memo;
vector<int> a(n);
bool found = false;
for (int i = 0; i < n; i++) {
cin >> a[i];
if (memo[a[i]] > 0) {
found = true;
break;
}
memo[a[i]]++;
}
if (found) {
cout << 0 << "\n";
return 0;
}
for (int i = 0; i < n; i++) {
int b = a[i] & x;
bool ok = memo[b] > 1 or (a[i] != b and memo[b] > 0);
if (ok) {
found = true;
break;
}
}
if (found) {
cout << 1 << "\n";
return 0;
}
memo.clear();
for (int i = 0; i < n; i++) {
int b = a[i] & x;
memo[b]++;
if (memo[b] > 1) {
found = true;
break;
}
}
if (found) {
cout << 2 << "\n";
} else {
cout << -1 << "\n";
}
return 0;
}