303848: CF742B. Arpa’s obvious problem and Mehrdad’s terrible solution
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Arpa’s obvious problem and Mehrdad’s terrible solution
题意翻译
给出一串数组a1..an,和一个数字x,询问有多少对ai,aj满足ai^aj=x题目描述
There are some beautiful girls in Arpa’s land as mentioned before. Once Arpa came up with an obvious problem: Given an array and a number $ x $ , count the number of pairs of indices $ i,j $ ( $ 1<=i<j<=n $ ) such that ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF742B/80e8812f6abd24888e930488b3c56b15fb2a49a1.png), where ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF742B/4298d47c0191af3c0a3103f431751061bc7e2362.png) is bitwise xor operation (see notes for explanation). ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF742B/7cd1b5aedffc45f296d333e099a050047eae38ee.png)Immediately, Mehrdad discovered a terrible solution that nobody trusted. Now Arpa needs your help to implement the solution to that problem.输入输出格式
输入格式
First line contains two integers $ n $ and $ x $ ( $ 1<=n<=10^{5},0<=x<=10^{5} $ ) — the number of elements in the array and the integer $ x $ . Second line contains $ n $ integers $ a_{1},a_{2},...,a_{n} $ ( $ 1<=a_{i}<=10^{5} $ ) — the elements of the array.
输出格式
Print a single integer: the answer to the problem.
输入输出样例
输入样例 #1
2 3
1 2
输出样例 #1
1
输入样例 #2
6 1
5 1 2 3 4 1
输出样例 #2
2