結果

問題 No.2164 Equal Balls
ユーザー ぷらぷら
提出日時 2022-12-15 03:37:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,882 bytes
コンパイル時間 5,125 ms
コンパイル使用メモリ 264,872 KB
実行使用メモリ 17,120 KB
最終ジャッジ日時 2024-04-26 07:07:52
合計ジャッジ時間 59,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,772 KB
testcase_01 AC 6 ms
8,388 KB
testcase_02 AC 6 ms
8,260 KB
testcase_03 AC 7 ms
8,516 KB
testcase_04 AC 6 ms
8,516 KB
testcase_05 AC 6 ms
8,516 KB
testcase_06 AC 6 ms
8,260 KB
testcase_07 AC 6 ms
8,388 KB
testcase_08 AC 336 ms
10,424 KB
testcase_09 AC 223 ms
9,448 KB
testcase_10 AC 77 ms
8,992 KB
testcase_11 AC 1,066 ms
11,116 KB
testcase_12 AC 370 ms
10,992 KB
testcase_13 AC 195 ms
9,896 KB
testcase_14 AC 276 ms
9,720 KB
testcase_15 AC 1,020 ms
10,980 KB
testcase_16 AC 295 ms
10,260 KB
testcase_17 AC 37 ms
8,644 KB
testcase_18 AC 611 ms
10,632 KB
testcase_19 AC 1,364 ms
13,412 KB
testcase_20 AC 471 ms
10,860 KB
testcase_21 AC 24 ms
8,664 KB
testcase_22 AC 23 ms
8,896 KB
testcase_23 AC 2,574 ms
10,860 KB
testcase_24 AC 2,728 ms
13,844 KB
testcase_25 AC 2,263 ms
9,412 KB
testcase_26 AC 2,215 ms
13,416 KB
testcase_27 AC 3,701 ms
13,928 KB
testcase_28 AC 3,713 ms
14,096 KB
testcase_29 AC 917 ms
9,736 KB
testcase_30 AC 2,556 ms
11,620 KB
testcase_31 AC 3,093 ms
10,052 KB
testcase_32 AC 3,421 ms
13,944 KB
testcase_33 AC 1,600 ms
9,432 KB
testcase_34 AC 2,221 ms
10,304 KB
testcase_35 AC 433 ms
8,644 KB
testcase_36 TLE -
testcase_37 AC 3,667 ms
10,176 KB
testcase_38 TLE -
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;

constexpr int mod = 998244353;

long long fac[200005], finv[200005], inv[200005];

void COMinit() {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < 200005; i++) {
        fac[i] = fac[i - 1] * i % mod;
        inv[i] = mod - inv[mod % i] * (mod / i) % mod;
        finv[i] = finv[i - 1] * inv[i] % mod;
    }
}

long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

long long choose(int n,int k) {
    if(n < 0 || k < 0) return 0;
    if(n == 0) return 1;
    return COM(n+k-1,k-1);
}

int dp[303][603];

int main() {
    COMinit();
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin >> N >> M;
    vector<int>A(N),B(N);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> B[i];
    }
    for(int i = 0; i < M; i++) {
        for(int j = 0; j <= 600; j++) {
            dp[i][j] = 1;
        }
    }
    for(int i = 0; i < N; i++) {
        vector<int>a(A[i]+1),b(B[i]+1);
        for(int j = 0; j <= A[i]; j++) {
            a[j] = COM(A[i],j);
        }
        for(int j = 0; j <= B[i]; j++) {
            b[j] = COM(B[i],j);
        }
        reverse(b.begin(),b.end());
        vector<int>c = convolution(a,b);
        vector<int>d(601);
        for(int j = 0; j <= A[i]+B[i]; j++) {
            d[300+j-B[i]] = c[j];
        }
        for(int j = 0; j <= 600; j++) {
            dp[i%M][j] = 1ll*dp[i%M][j]*d[j]%mod;
        }
    }
    vector<int>tmp(1,1);
    for(int i = 0; i < M; i++) {
        vector<int>res(601);
        for(int j = 0; j <= 600; j++) {
            res[j] = dp[i][j];
        }
        tmp = convolution(tmp,res);
    }
    cout << tmp[300*M] << endl;
}
0