結果

問題 No.2164 Equal Balls
ユーザー roarisroaris
提出日時 2022-12-15 05:01:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,657 bytes
コンパイル時間 4,990 ms
コンパイル使用メモリ 263,896 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-04-26 08:19:02
合計ジャッジ時間 13,224 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 74 ms
6,116 KB
testcase_09 AC 35 ms
5,376 KB
testcase_10 AC 36 ms
5,376 KB
testcase_11 AC 91 ms
7,180 KB
testcase_12 AC 71 ms
6,284 KB
testcase_13 AC 48 ms
5,376 KB
testcase_14 AC 55 ms
5,376 KB
testcase_15 AC 87 ms
7,224 KB
testcase_16 AC 64 ms
5,900 KB
testcase_17 AC 20 ms
5,376 KB
testcase_18 AC 78 ms
6,592 KB
testcase_19 AC 136 ms
8,268 KB
testcase_20 AC 74 ms
6,208 KB
testcase_21 AC 22 ms
5,376 KB
testcase_22 AC 32 ms
5,376 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

const int MAX = 310;
const ll MOD = 998244353;
ll fact[MAX], finv[MAX], inv[MAX];

void Cinit() {
    fact[0] = fact[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for (int i=2; i<MAX; i++) {
        fact[i] = fact[i-1]*i%MOD;
        inv[i] = MOD-inv[MOD%i]*(MOD/i)%MOD;
        finv[i] = finv[i-1]*inv[i]%MOD;
    }
}

ll C(int n, int k) {
    if (n<k) return 0;
    if (n<0 || k<0) return 0;
    return fact[n]*(finv[k]*finv[n-k]%MOD)%MOD;
}

vector<ll> coef[310];

vector<ll> rec(int l, int r) {
    if (l==r) return coef[l];
    int m = (l+r)/2;
    vector<ll> res1 = rec(l, m);
    vector<ll> res2 = rec(m+1, r);
    vector<ll> res = convolution(res1, res2);
    return res;
}

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    int N, M; cin >> N >> M;
    int A[N], B[N];
    rep(i, N) cin >> A[i];
    rep(i, N) cin >> B[i];
    Cinit();
    
    int offset = 300;
    rep(i, M) {
        coef[i].resize(601);
        rep(j, 601) coef[i][j] = 1ll;
    }
    
    rep(i, M) {
        for (int j=i; j<N; j+=M) {
            vector<ll> a(601, 0), b(601, 0);
            rep(k, A[j]+1) a[k+offset] = C(A[j], k)%MOD;
            rep(k, B[j]+1) b[offset-k] = C(B[j], k)%MOD;
            vector<ll> conv = convolution(a, b);
            for (int k=0; k<601; k++) {
                coef[i][k] *= conv[k+offset];
                coef[i][k] %= MOD;
            }
        }
    }
    
    vector<ll> res = rec(0, M-1);
    cout << res[M*offset] << endl;
}
0