結果

問題 No.2164 Equal Balls
ユーザー ぷらぷら
提出日時 2022-12-15 04:03:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,951 bytes
コンパイル時間 4,925 ms
コンパイル使用メモリ 265,540 KB
実行使用メモリ 18,128 KB
最終ジャッジ日時 2024-04-26 07:26:50
合計ジャッジ時間 44,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,256 KB
testcase_01 AC 5 ms
8,392 KB
testcase_02 AC 7 ms
8,512 KB
testcase_03 AC 5 ms
8,260 KB
testcase_04 AC 7 ms
8,264 KB
testcase_05 AC 5 ms
8,384 KB
testcase_06 AC 6 ms
8,256 KB
testcase_07 AC 7 ms
8,392 KB
testcase_08 AC 55 ms
11,496 KB
testcase_09 AC 39 ms
10,228 KB
testcase_10 AC 28 ms
9,488 KB
testcase_11 AC 97 ms
13,348 KB
testcase_12 AC 55 ms
11,420 KB
testcase_13 AC 40 ms
10,292 KB
testcase_14 AC 48 ms
10,492 KB
testcase_15 AC 93 ms
13,372 KB
testcase_16 AC 52 ms
11,176 KB
testcase_17 AC 18 ms
9,016 KB
testcase_18 AC 75 ms
12,340 KB
testcase_19 AC 112 ms
15,352 KB
testcase_20 AC 68 ms
12,044 KB
testcase_21 AC 15 ms
8,728 KB
testcase_22 AC 17 ms
8,760 KB
testcase_23 AC 2,718 ms
11,152 KB
testcase_24 AC 1,430 ms
15,656 KB
testcase_25 AC 2,514 ms
9,668 KB
testcase_26 AC 494 ms
16,836 KB
testcase_27 AC 1,727 ms
17,800 KB
testcase_28 AC 1,781 ms
17,688 KB
testcase_29 AC 869 ms
10,596 KB
testcase_30 AC 1,775 ms
13,932 KB
testcase_31 AC 3,395 ms
10,500 KB
testcase_32 AC 2,003 ms
16,700 KB
testcase_33 AC 1,754 ms
9,552 KB
testcase_34 AC 2,291 ms
11,160 KB
testcase_35 AC 481 ms
8,652 KB
testcase_36 AC 4,128 ms
18,128 KB
testcase_37 AC 4,047 ms
10,304 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 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];
    }
    vector<vector<int>>dp(M,vector<int>(601,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>id(M);
    iota(id.begin(),id.end(),0);
    while(id.size() > 1) {
        vector<int>nxt;
        for(int i = 0; i+1 < id.size(); i += 2) {
            dp[id[i]] = convolution(dp[id[i]],dp[id[i+1]]);
            nxt.push_back(id[i]);
        }
        if(id.size()%2) {
            nxt.push_back(id.back());
        }
        id = nxt;
    }
    cout << dp[id[0]][300*M] << endl;
}
0