結果

問題 No.2484 Add to Variables
ユーザー pockynypockyny
提出日時 2023-10-03 23:32:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 1,118 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 112,264 KB
実行使用メモリ 29,052 KB
最終ジャッジ日時 2024-07-26 14:14:03
合計ジャッジ時間 6,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
15,360 KB
testcase_01 AC 39 ms
15,360 KB
testcase_02 AC 36 ms
15,488 KB
testcase_03 AC 38 ms
15,360 KB
testcase_04 AC 35 ms
15,360 KB
testcase_05 AC 38 ms
15,328 KB
testcase_06 AC 42 ms
15,360 KB
testcase_07 AC 38 ms
15,248 KB
testcase_08 AC 43 ms
15,232 KB
testcase_09 AC 37 ms
15,360 KB
testcase_10 AC 43 ms
16,128 KB
testcase_11 AC 60 ms
17,096 KB
testcase_12 AC 74 ms
19,160 KB
testcase_13 AC 54 ms
16,956 KB
testcase_14 AC 93 ms
21,860 KB
testcase_15 AC 45 ms
15,872 KB
testcase_16 AC 99 ms
22,636 KB
testcase_17 AC 64 ms
18,452 KB
testcase_18 AC 77 ms
19,116 KB
testcase_19 AC 156 ms
28,816 KB
testcase_20 AC 41 ms
15,616 KB
testcase_21 AC 152 ms
28,860 KB
testcase_22 AC 49 ms
16,128 KB
testcase_23 AC 66 ms
18,644 KB
testcase_24 AC 116 ms
23,228 KB
testcase_25 AC 98 ms
22,360 KB
testcase_26 AC 67 ms
18,848 KB
testcase_27 AC 77 ms
18,884 KB
testcase_28 AC 98 ms
22,176 KB
testcase_29 AC 96 ms
22,228 KB
testcase_30 AC 51 ms
16,888 KB
testcase_31 AC 160 ms
29,052 KB
testcase_32 AC 116 ms
22,812 KB
testcase_33 AC 118 ms
23,276 KB
testcase_34 AC 65 ms
18,840 KB
testcase_35 AC 97 ms
22,528 KB
testcase_36 AC 67 ms
18,840 KB
testcase_37 AC 97 ms
22,512 KB
testcase_38 AC 93 ms
22,176 KB
testcase_39 AC 118 ms
22,984 KB
testcase_40 AC 45 ms
15,516 KB
testcase_41 AC 65 ms
18,644 KB
testcase_42 AC 51 ms
16,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const int MX = 1000010;
mint f[MX],inv[MX],fi[MX];
constexpr ll mod = 998244353;
void solve(){
    inv[1] = 1;
    for(int i=2;i<MX;i++){
        inv[i] = mod - (mod/i)*inv[mod%i];
    }
    f[0] = fi[0] = 1;
    for(int i=1;i<MX;i++){
        f[i] = f[i-1]*i;
        fi[i] = fi[i-1]*inv[i];
    }
}

int a[200010];
int main(){
    solve();
    int i,n,m; cin >> n >> m;
    for(i=0;i<n;i++) cin >> a[i];
    vector<mint> ff(m + 1),gg(m + 1),hh(m + 1);
    for(i=0;i<=m;i++){
        if(a[0] - a[1] + i>=0) ff[i] = fi[i]*fi[a[0] - a[1] + i];
        if(a[1] - a[2] + i>=0) gg[i] = fi[i]*fi[a[1] - a[2] + i];
        if(a[2] - a[3] + i>=0) hh[i] = fi[i]*fi[a[2] - a[3] + i];
    }
    ff = convolution(ff,gg);
    ff = convolution(ff,hh);
    mint ans = 0;
    for(i=0;i<=m;i++){
        if(a[3] - i>=0 && (m - a[0]) - i>=0) ans += ff[i]*fi[a[3] - i]*fi[m - a[0] - i];
    }
    ans *= f[m];
    cout << ans.val() << "\n";
}
0