結果
| 問題 |
No.1072 A Nice XOR Pair
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2020-06-05 21:37:49 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 288 ms / 2,000 ms |
| コード長 | 639 bytes |
| コンパイル時間 | 1,092 ms |
| コンパイル使用メモリ | 99,080 KB |
| 最終ジャッジ日時 | 2025-01-10 22:16:56 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 11 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, x;
cin >> n >> x;
map<int, int> mp;
for (int i = 0; i < n; i++) {
int a;
cin >> a;
mp[a]++;
}
ll r = 0;
for (const auto& [a, k] : mp) {
int b = a ^ x;
if (a == b) {
r += (ll)k * (k - 1);
} else {
r += (ll)k * mp[b];
}
}
cout << r / 2 << endl;
return 0;
}
merom686