結果
問題 | No.1240 Or Sum of Xor Pair |
ユーザー | Mister |
提出日時 | 2020-09-26 13:45:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 257 ms / 2,000 ms |
コード長 | 1,834 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 77,184 KB |
実行使用メモリ | 6,260 KB |
最終ジャッジ日時 | 2024-06-29 00:57:39 |
合計ジャッジ時間 | 9,847 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 208 ms
5,340 KB |
testcase_01 | AC | 210 ms
5,468 KB |
testcase_02 | AC | 210 ms
5,472 KB |
testcase_03 | AC | 211 ms
5,492 KB |
testcase_04 | AC | 212 ms
5,616 KB |
testcase_05 | AC | 210 ms
5,492 KB |
testcase_06 | AC | 210 ms
5,484 KB |
testcase_07 | AC | 210 ms
5,488 KB |
testcase_08 | AC | 213 ms
5,488 KB |
testcase_09 | AC | 212 ms
5,492 KB |
testcase_10 | AC | 213 ms
5,424 KB |
testcase_11 | AC | 217 ms
5,572 KB |
testcase_12 | AC | 219 ms
5,596 KB |
testcase_13 | AC | 219 ms
5,376 KB |
testcase_14 | AC | 220 ms
5,504 KB |
testcase_15 | AC | 253 ms
5,996 KB |
testcase_16 | AC | 254 ms
5,996 KB |
testcase_17 | AC | 254 ms
6,132 KB |
testcase_18 | AC | 254 ms
6,088 KB |
testcase_19 | AC | 257 ms
6,124 KB |
testcase_20 | AC | 254 ms
6,000 KB |
testcase_21 | AC | 254 ms
6,260 KB |
testcase_22 | AC | 254 ms
6,260 KB |
testcase_23 | AC | 253 ms
6,132 KB |
testcase_24 | AC | 254 ms
5,996 KB |
testcase_25 | AC | 253 ms
6,128 KB |
testcase_26 | AC | 251 ms
6,260 KB |
testcase_27 | AC | 208 ms
5,376 KB |
testcase_28 | AC | 208 ms
5,464 KB |
testcase_29 | AC | 233 ms
6,124 KB |
testcase_30 | AC | 223 ms
5,736 KB |
testcase_31 | AC | 223 ms
5,608 KB |
testcase_32 | AC | 231 ms
6,000 KB |
ソースコード
#include <iostream> #include <numeric> #include <vector> using lint = long long; constexpr int K = 18; void xor_convolution(std::vector<lint>& xs) { for (int i = 1; i < (1 << K); i <<= 1) { for (int b = 0; b < (1 << K); ++b) { if (b & i) continue; auto l = xs[b], r = xs[b | i]; xs[b] = l + r; xs[b | i] = l - r; } } for (auto& x : xs) x *= x; for (int i = 1; i < (1 << K); i <<= 1) { for (int b = 0; b < (1 << K); ++b) { if (b & i) continue; auto l = xs[b], r = xs[b | i]; xs[b] = l + r; xs[b | i] = l - r; } } for (auto& x : xs) x >>= K; } void solve() { int n, a; std::cin >> n >> a; std::vector<int> xs(n); for (auto& x : xs) std::cin >> x; lint tot; { int sz = 0; std::vector<lint> cnt(1 << K, 0); for (auto x : xs) { ++cnt[x]; ++sz; } xor_convolution(cnt); cnt[0] -= sz; for (auto& c : cnt) c >>= 1; tot = std::accumulate(cnt.begin(), cnt.begin() + a, 0LL); } lint ans = 0; for (int k = 1; k < (1 << K); k <<= 1) { lint num = tot; { int sz = 0; std::vector<lint> cnt(1 << K, 0); for (auto x : xs) { if (x & k) continue; ++cnt[x]; ++sz; } xor_convolution(cnt); cnt[0] -= sz; for (auto& c : cnt) c >>= 1; num -= std::accumulate(cnt.begin(), cnt.begin() + a, 0LL); } ans += k * num; } std::cout << ans << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }