結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | Mister |
提出日時 | 2020-08-01 07:27:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 259 ms / 2,000 ms |
コード長 | 626 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 81,408 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-07-07 12:40:07 |
合計ジャッジ時間 | 2,901 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 259 ms
16,000 KB |
testcase_08 | AC | 27 ms
5,376 KB |
testcase_09 | AC | 26 ms
5,376 KB |
testcase_10 | AC | 49 ms
5,376 KB |
testcase_11 | AC | 157 ms
8,704 KB |
testcase_12 | AC | 232 ms
14,720 KB |
ソースコード
#include <iostream> #include <map> using lint = long long; void solve() { int n, x; std::cin >> n >> x; std::map<int, lint> cnt; while (n--) { int a; std::cin >> a; if (!cnt.count(a)) cnt[a] = 0; ++cnt[a]; } lint ans = 0; for (auto [a, c] : cnt) { if (x == 0) { ans += c * (c - 1); } else { auto b = (a ^ x); if (cnt.count(b)) ans += c * cnt[b]; } } std::cout << ans / 2 << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }