結果

問題 No.2528 pop_(backfront or not)
ユーザー askr58askr58
提出日時 2023-11-03 21:58:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 873 bytes
コンパイル時間 4,515 ms
コンパイル使用メモリ 267,264 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-09-25 20:14:02
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 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 4 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 8 ms
5,888 KB
testcase_10 AC 18 ms
10,880 KB
testcase_11 AC 20 ms
11,520 KB
testcase_12 AC 27 ms
15,232 KB
testcase_13 AC 29 ms
16,512 KB
testcase_14 AC 36 ms
19,584 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using mint=modint998244353;
int main()
{
    int n;
    cin>>n;
    vector<vector<mint>> dp(n+1,vector<mint>(2*n+1));
    dp[0][0]=1;
    vector<mint> fac(3000),invfac(3000);
    fac[0]=1;
    for(int i=1;i<3000;i++)fac[i]=fac[i-1]*i;
    for(int i=0;i<3000;i++)invfac[i]=fac[i].inv();
    for(int i=1;i<=n;i++){
        for(int j=1;j<=i;j++){
            if(2*i-j>=3)dp[i][j]+=dp[i-1][j]*fac[2*i-j-1]*invfac[2*i-j-3]*invfac[2];
            if(j>=3)dp[i][j]+=dp[i-1][j-2]*fac[j-1]*invfac[j-3]*invfac[2];
            if(j>=2&&2*i-j>=2)dp[i][j]+=dp[i-1][j-1]*(j-1)*(2*i-j-1);
            dp[i][j]+=dp[i-1][j-1];
            dp[i][2*i-j]=dp[i][j];

        }
    }
    for(int i=0;i<=2*n;i++){
        cout<<dp[n][min(i,2*n-i)].val()<<endl;
    }
    return 0;
}
0