結果

問題 No.1958 Bit Game
ユーザー trineutrontrineutron
提出日時 2022-05-27 21:50:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 1,789 bytes
コンパイル時間 2,452 ms
コンパイル使用メモリ 209,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 15:45:38
合計ジャッジ時間 10,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
5,376 KB
testcase_01 AC 297 ms
5,376 KB
testcase_02 AC 300 ms
5,376 KB
testcase_03 AC 297 ms
5,376 KB
testcase_04 AC 295 ms
5,376 KB
testcase_05 AC 295 ms
5,376 KB
testcase_06 AC 296 ms
5,376 KB
testcase_07 AC 298 ms
5,376 KB
testcase_08 AC 296 ms
5,376 KB
testcase_09 AC 296 ms
5,376 KB
testcase_10 AC 73 ms
5,376 KB
testcase_11 AC 142 ms
5,376 KB
testcase_12 AC 171 ms
5,376 KB
testcase_13 AC 166 ms
5,376 KB
testcase_14 AC 152 ms
5,376 KB
testcase_15 AC 179 ms
5,376 KB
testcase_16 AC 117 ms
5,376 KB
testcase_17 AC 245 ms
5,376 KB
testcase_18 AC 228 ms
6,940 KB
testcase_19 AC 146 ms
6,940 KB
testcase_20 AC 172 ms
6,940 KB
testcase_21 AC 193 ms
6,940 KB
testcase_22 AC 86 ms
6,940 KB
testcase_23 AC 94 ms
6,944 KB
testcase_24 AC 222 ms
6,944 KB
testcase_25 AC 110 ms
6,940 KB
testcase_26 AC 166 ms
6,944 KB
testcase_27 AC 160 ms
6,944 KB
testcase_28 AC 198 ms
6,940 KB
testcase_29 AC 103 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main() {
    int n, x, y;
    cin >> n >> x >> y;
    vector<int> a(x), b(y);
    for (int i = 0; i < x; i++) {
        cin >> a.at(i);
    }
    for (int i = 0; i < y; i++) {
        cin >> b.at(i);
    }

    vector<mint> cx0(18), cx1(18), cy0(18), cy1(18);
    for (int i = 0; i < x; i++) {
        for (int j = 0; j < 18; j++) {
            if (a.at(i) >> j & 1) {
                cx1.at(j)++;
            } else {
                cx0.at(j)++;
            }
        }
    }
    for (int i = 0; i < y; i++) {
        for (int j = 0; j < 18; j++) {
            if (b.at(i) >> j & 1) {
                cy1.at(j)++;
            } else {
                cy0.at(j)++;
            }
        }
    }

    vector<mint> cp0(18, 1), cp1(18);
    for (int i = 0; i < 2 * n; i++) {
        vector<mint> cp0_new(18), cp1_new(18);
        if (i % 2 == 0) {
            for (int j = 0; j < 18; j++) {
                cp0_new.at(j) += cp0.at(j) * cx0.at(j);
                cp1_new.at(j) += cp0.at(j) * cx1.at(j);
                cp1_new.at(j) += cp1.at(j) * cx0.at(j);
                cp1_new.at(j) += cp1.at(j) * cx1.at(j);
            }
        } else {
            for (int j = 0; j < 18; j++) {
                cp0_new.at(j) += cp0.at(j) * cy0.at(j);
                cp0_new.at(j) += cp0.at(j) * cy1.at(j);
                cp0_new.at(j) += cp1.at(j) * cy0.at(j);
                cp1_new.at(j) += cp1.at(j) * cy1.at(j);
            }
        }
        swap(cp0, cp0_new);
        swap(cp1, cp1_new);
    }

    mint ans = 0;
    for (int i = 18 - 1; i >= 0; i--) {
        ans *= 2;
        ans += cp1.at(i);
    }
    cout << ans.val() << endl;

    return 0;
}
0