結果

問題 No.2528 pop_(backfront or not)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-02 01:02:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 1,058 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 206,880 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-09-30 22:58:22
合計ジャッジ時間 3,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 15 ms
7,808 KB
testcase_10 AC 47 ms
18,560 KB
testcase_11 AC 50 ms
19,840 KB
testcase_12 AC 72 ms
27,136 KB
testcase_13 AC 80 ms
29,696 KB
testcase_14 AC 98 ms
36,096 KB
testcase_15 AC 149 ms
54,272 KB
testcase_16 AC 188 ms
65,664 KB
testcase_17 AC 189 ms
65,792 KB
testcase_18 AC 187 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<vector<mint>> dp(2 * n + 1, vector<mint>(2 * n + 1, 0));
    dp[0][0] = 1;
    for (int i = 1; i <= 2 * n; i++) {
        for (int j = 1; j <= 2 * n; j++) {
            // 両端を取り除く
            dp[i][j] += dp[i - 1][j - 1];
            // 両端以外から、両方取り除く
            dp[i][j] += dp[i - 1][j - 1] * (i - 1) * (j - 1);
            // 左側から2つ取り除く
            if (i >= 2) {
                dp[i][j] += dp[i - 2][j] * ((long long)(i - 1) * (i - 2) / 2);
            }
            // 右側から2つ取り除く
            if (j >= 2) {
                dp[i][j] += dp[i][j - 2] * ((long long)(j - 1) * (j - 2) / 2);
            }
        }
    }
    for (int i = 1; i <= 2 * n + 1; i++) {
        cout << dp[i - 1][2 * n + 1 - i].val() << "\n";
    }
}
0