結果

問題 No.2164 Equal Balls
ユーザー trineutrontrineutron
提出日時 2022-12-15 16:42:33
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,593 bytes
コンパイル時間 3,225 ms
コンパイル使用メモリ 257,740 KB
実行使用メモリ 13,220 KB
最終ジャッジ日時 2024-11-14 07:18:22
合計ジャッジ時間 211,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,532 KB
testcase_01 AC 5 ms
10,660 KB
testcase_02 AC 13 ms
10,528 KB
testcase_03 AC 5 ms
10,788 KB
testcase_04 AC 13 ms
10,664 KB
testcase_05 AC 28 ms
10,532 KB
testcase_06 AC 27 ms
10,660 KB
testcase_07 AC 24 ms
10,660 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2,294 ms
11,696 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 934 ms
12,072 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 502 ms
13,092 KB
testcase_22 AC 411 ms
12,992 KB
testcase_23 AC 4,491 ms
13,216 KB
testcase_24 TLE -
testcase_25 AC 1,062 ms
13,116 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2,616 ms
6,824 KB
testcase_32 TLE -
testcase_33 AC 1,476 ms
6,816 KB
testcase_34 TLE -
testcase_35 AC 158 ms
6,816 KB
testcase_36 TLE -
testcase_37 AC 1,514 ms
6,820 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 1,164 ms
6,816 KB
testcase_50 AC 1,159 ms
6,816 KB
testcase_51 AC 1,168 ms
6,820 KB
testcase_52 AC 1,170 ms
6,820 KB
testcase_53 AC 1,177 ms
13,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint998244353;

std::vector<mint> fact, inv;

void init(int n) {
    fact.resize(n + 1);
    inv.resize(n + 1);
    fact[0] = 1;
    for (int i = 1; i <= n; i++) {
        fact[i] = fact[i - 1] * i;
    }
    inv[n] = fact[n].inv();
    for (int i = n; i >= 1; i--) {
        inv[i - 1] = inv[i] * i;
    }
}

mint ncr(int n, int r) {
    if (r < 0 or n < r) return 0;
    return fact[n] * inv[r] * inv[n - r];
}

int main() {
    init(600);

    int n, m;
    cin >> n >> m;
    vector<int> a(n), b(n);
    for (auto &&x : a) {
        cin >> x;
    }
    for (auto &&x : b) {
        cin >> x;
    }

    int offset = 300;
    vector<vector<mint>> count(m, vector<mint>(2 * offset + 1, 1));
    for (int i = 0; i < n; i++) {
        for (int j = -offset; j <= offset; j++) {
            count.at(i % m).at(j + offset) *=
                ncr(a.at(i) + b.at(i), a.at(i) + j);
        }
    }

    int offset2 = (m + 1) / 2 * 300;
    vector<mint> ans(2 * offset2 + 1);
    ans.at(offset2) = 1;
    for (int i = 0; i < m; i++) {
        vector<mint> ans_new(2 * offset2 + 1);
        for (int j = 0; j <= 2 * offset2; j++) {
            for (int k = -offset; k <= offset; k++) {
                int j_next = j + k;
                if (j_next < 0 or 2 * offset2 < j_next) continue;
                ans_new.at(j_next) += ans.at(j) * count.at(i).at(k + offset);
            }
        }
        ans = move(ans_new);
    }

    cout << ans.at(offset2).val() << endl;

    return 0;
}
0