結果
問題 | No.1072 A Nice XOR Pair |
ユーザー | tnakao0123 |
提出日時 | 2020-06-07 01:20:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 1,003 ms |
コンパイル使用メモリ | 97,652 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 03:29:04 |
合計ジャッジ時間 | 2,721 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
/* -*- coding: utf-8 -*- * * 1072.cc: No.1072 A Nice XOR Pair - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100000; /* typedef */ typedef long long ll; /* global variables */ int as[MAX_N], cs[MAX_N]; /* subroutines */ /* main */ int main() { int n, x; scanf("%d%d", &n, &x); for (int i = 0; i < n; i++) scanf("%d", as + i); sort(as, as + n); int m = 0; for (int i = 0; i < n;) { int j = i + 1; while (j < n && as[i] == as[j]) j++; as[m] = as[i], cs[m] = j - i; m++; i = j; } //for (int i = 0; i < m; i++) printf("%d:%d ", as[i], cs[i]); putchar('\n'); ll sum = 0; for (int i = 0; i < m; i++) { if (x == 0) sum += (ll)cs[i] * (cs[i] - 1) / 2; else { int b = as[i] ^ x; int j = lower_bound(as, as + m, b) - as; if (j < i && as[j] == b) sum += (ll)cs[i] * cs[j]; } } printf("%lld\n", sum); return 0; }