結果

問題 No.2164 Equal Balls
ユーザー suisensuisen
提出日時 2022-12-24 02:47:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 436 ms / 5,000 ms
コード長 1,543 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 126,336 KB
実行使用メモリ 10,616 KB
最終ジャッジ日時 2024-04-29 04:46:50
合計ジャッジ時間 14,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 46 ms
6,320 KB
testcase_09 AC 35 ms
5,720 KB
testcase_10 AC 20 ms
5,436 KB
testcase_11 AC 85 ms
7,000 KB
testcase_12 AC 49 ms
6,400 KB
testcase_13 AC 30 ms
5,704 KB
testcase_14 AC 40 ms
5,904 KB
testcase_15 AC 81 ms
7,020 KB
testcase_16 AC 45 ms
6,540 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 60 ms
6,568 KB
testcase_19 AC 101 ms
8,352 KB
testcase_20 AC 53 ms
6,480 KB
testcase_21 AC 8 ms
5,376 KB
testcase_22 AC 8 ms
5,376 KB
testcase_23 AC 133 ms
6,788 KB
testcase_24 AC 159 ms
8,896 KB
testcase_25 AC 109 ms
5,888 KB
testcase_26 AC 131 ms
8,652 KB
testcase_27 AC 190 ms
9,288 KB
testcase_28 AC 194 ms
9,176 KB
testcase_29 AC 63 ms
5,880 KB
testcase_30 AC 152 ms
7,928 KB
testcase_31 AC 156 ms
6,536 KB
testcase_32 AC 191 ms
9,048 KB
testcase_33 AC 84 ms
5,760 KB
testcase_34 AC 120 ms
6,608 KB
testcase_35 AC 23 ms
5,376 KB
testcase_36 AC 273 ms
9,952 KB
testcase_37 AC 171 ms
6,656 KB
testcase_38 AC 422 ms
10,612 KB
testcase_39 AC 433 ms
10,480 KB
testcase_40 AC 433 ms
10,480 KB
testcase_41 AC 436 ms
10,488 KB
testcase_42 AC 431 ms
10,480 KB
testcase_43 AC 436 ms
10,484 KB
testcase_44 AC 435 ms
10,608 KB
testcase_45 AC 433 ms
10,616 KB
testcase_46 AC 435 ms
10,616 KB
testcase_47 AC 428 ms
10,612 KB
testcase_48 AC 436 ms
10,608 KB
testcase_49 AC 300 ms
8,060 KB
testcase_50 AC 298 ms
8,056 KB
testcase_51 AC 302 ms
7,536 KB
testcase_52 AC 303 ms
7,664 KB
testcase_53 AC 309 ms
7,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <deque>
#include <vector>

#include <atcoder/modint>
#include <atcoder/convolution>

using mint = atcoder::modint998244353;

constexpr int L = 300;
constexpr int M = 2 * L + 1;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n, m;
    std::cin >> n >> m;

    std::vector<int> a(n), b(n);
    for (auto &&e : a) std::cin >> e;
    for (auto &&e : b) std::cin >> e;


    std::vector binom(M, std::vector<mint>(M));
    for (int i = 0; i < M; ++i) {
        binom[i][0] = binom[i][i] = 1;
        for (int j = 1; j < i; ++j) {
            binom[i][j] = binom[i - 1][j - 1] + binom[i - 1][j];
        }
    }

    std::deque<std::vector<mint>> fs;
    for (int i = 0; i < m; ++i) {
        int miny = L;
        std::vector<int> x, y;
        for (int j = i; j < n; j += m) {
            x.push_back(a[j]);
            y.push_back(b[j]);
            miny = std::min(miny, b[j]);
        }
        const int siz = x.size();
        std::vector<mint> f(M, 0);
        std::fill(f.begin() + (L - miny), f.end(), 1);
        for (int j = 0; j < siz; ++j) {
            for (int d = -miny; d <= L; ++d) {
                f[L + d] *= binom[x[j] + y[j]][d + y[j]];
            }
        }
        fs.emplace_back(std::move(f));
    }

    while (fs.size() >= 2) {
        auto f = fs.front();
        fs.pop_front();
        auto g = fs.front();
        fs.pop_front();
        fs.push_back(atcoder::convolution(f, g));
    }

    std::cout << fs.front()[m * L].val() << std::endl;
}
0