結果
問題 | No.1240 Or Sum of Xor Pair |
ユーザー | Mister |
提出日時 | 2020-09-26 14:49:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 229 ms / 2,000 ms |
コード長 | 2,024 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 77,232 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 02:10:19 |
合計ジャッジ時間 | 9,158 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 184 ms
6,816 KB |
testcase_01 | AC | 184 ms
6,944 KB |
testcase_02 | AC | 185 ms
6,944 KB |
testcase_03 | AC | 187 ms
6,940 KB |
testcase_04 | AC | 187 ms
6,940 KB |
testcase_05 | AC | 185 ms
6,944 KB |
testcase_06 | AC | 185 ms
6,944 KB |
testcase_07 | AC | 186 ms
6,940 KB |
testcase_08 | AC | 186 ms
6,940 KB |
testcase_09 | AC | 186 ms
6,944 KB |
testcase_10 | AC | 190 ms
6,944 KB |
testcase_11 | AC | 197 ms
6,940 KB |
testcase_12 | AC | 198 ms
6,940 KB |
testcase_13 | AC | 198 ms
6,940 KB |
testcase_14 | AC | 203 ms
6,940 KB |
testcase_15 | AC | 226 ms
6,940 KB |
testcase_16 | AC | 229 ms
6,944 KB |
testcase_17 | AC | 223 ms
6,940 KB |
testcase_18 | AC | 225 ms
6,944 KB |
testcase_19 | AC | 223 ms
6,940 KB |
testcase_20 | AC | 221 ms
6,944 KB |
testcase_21 | AC | 222 ms
6,940 KB |
testcase_22 | AC | 225 ms
6,944 KB |
testcase_23 | AC | 228 ms
6,940 KB |
testcase_24 | AC | 226 ms
6,940 KB |
testcase_25 | AC | 225 ms
6,940 KB |
testcase_26 | AC | 229 ms
6,940 KB |
testcase_27 | AC | 184 ms
6,944 KB |
testcase_28 | AC | 184 ms
6,944 KB |
testcase_29 | AC | 209 ms
6,940 KB |
testcase_30 | AC | 197 ms
6,944 KB |
testcase_31 | AC | 198 ms
6,940 KB |
testcase_32 | AC | 204 ms
6,940 KB |
ソースコード
#include <iostream> #include <numeric> #include <vector> using lint = long long; constexpr int K = 18; // 自身とのxor畳み込み 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; // 0にi=jなるものが含まれることに注意 for (auto& c : cnt) c >>= 1; // i>jを除外 tot = std::accumulate(cnt.begin(), cnt.begin() + a, 0LL); } lint ans = 0; for (int k = 1; k < (1 << K); k <<= 1) { // k桁目が0であるもののみの個数 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; }