結果

問題 No.2528 pop_(backfront or not)
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-02 01:00:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,032 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 209,340 KB
実行使用メモリ 61,092 KB
最終ジャッジ日時 2024-09-30 22:58:17
合計ジャッジ時間 14,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 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 13 ms
5,248 KB
testcase_06 AC 22 ms
5,248 KB
testcase_07 AC 64 ms
5,248 KB
testcase_08 AC 98 ms
5,248 KB
testcase_09 AC 321 ms
7,936 KB
testcase_10 AC 1,037 ms
18,688 KB
testcase_11 AC 1,130 ms
19,840 KB
testcase_12 AC 1,812 ms
27,136 KB
testcase_13 AC 1,754 ms
29,696 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

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] * (i - 1) * (i - 2) / 2;
            }
            // 右側から2つ取り除く
            if (j >= 2) {
                dp[i][j] += dp[i][j - 2] * (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