結果
問題 | No.1189 Sum is XOR |
ユーザー | Ebishu |
提出日時 | 2020-08-02 00:54:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 1,525 bytes |
コンパイル時間 | 970 ms |
コンパイル使用メモリ | 95,676 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-16 00:59:58 |
合計ジャッジ時間 | 2,655 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
5,248 KB |
testcase_01 | AC | 55 ms
5,376 KB |
testcase_02 | AC | 50 ms
5,376 KB |
testcase_03 | AC | 21 ms
5,376 KB |
testcase_04 | AC | 17 ms
5,376 KB |
testcase_05 | AC | 28 ms
5,376 KB |
testcase_06 | AC | 42 ms
5,376 KB |
testcase_07 | AC | 24 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 11 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 26 ms
5,376 KB |
testcase_12 | AC | 51 ms
5,376 KB |
testcase_13 | AC | 57 ms
5,376 KB |
testcase_14 | AC | 47 ms
5,376 KB |
testcase_15 | AC | 30 ms
5,376 KB |
testcase_16 | AC | 27 ms
5,376 KB |
testcase_17 | AC | 28 ms
5,376 KB |
testcase_18 | AC | 27 ms
5,376 KB |
testcase_19 | AC | 53 ms
5,376 KB |
testcase_20 | AC | 55 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <unordered_map> #include <vector> using namespace std; using lint = int64_t; constexpr lint mod = 998244353; inline bool f(int x, int y) { return x + y == (x xor y); } lint inv(lint x) { lint res = 1, expo = mod - 2; while (expo > 0) { if (expo & 1) { res *= x; res %= mod; } x *= x; x %= mod; expo >>= 1; } return res; } lint solve(int n, int k, const vector<int>& a) { lint res = 0; if (11 <= k) return 0; else { unordered_map<int, lint>cnt; for (int i = 0; i < n; i++) { cnt[a[i]]++; } if (k == 2) { for (auto [i, cnt1] : cnt) { for (auto [j, cnt2] : cnt) { if (f(i, j)) res += cnt1 * cnt2; } } return res / 2 % mod; } else { vector<unordered_map<int, lint>>mp_vec(k - 2); for (auto [i, cnt1] : cnt) { for (auto [j, cnt2] : cnt) { if (f(i, j)) mp_vec[0][i xor j] += cnt1 * cnt2; } } for (int i = 0; i < k - 2; i++) { for (auto [key, value] : mp_vec[i]) { for (auto [j, cnt1] : cnt) { if (f(key, j)) { if (i < k - 3) { mp_vec[i + 1][key xor j] += cnt1 * value % mod; mp_vec[i + 1][key xor j] %= mod; } else { res += cnt1 * value % mod; res %= mod; } } } } } lint fact = 1; for (lint i = 2; i <= k; i++) { fact *= i; fact %= mod; } return res * inv(fact) % mod; } } } int main() { int n, k; cin >> n >> k; vector<int>a(n); for (int& e : a) cin >> e; cout << solve(n, k, a) << endl; }