結果
問題 | No.2528 pop_(backfront or not) |
ユーザー | ripity |
提出日時 | 2023-11-03 22:24:15 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 520 bytes |
コンパイル時間 | 4,542 ms |
コンパイル使用メモリ | 266,988 KB |
実行使用メモリ | 66,048 KB |
最終ジャッジ日時 | 2024-09-25 20:47:41 |
合計ジャッジ時間 | 5,994 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using mint = atcoder::modint998244353; int main() { int N; cin >> N; vector<vector<mint>> dp(2*N+1, vector<mint>(2*N+1)); dp[1][1] = 1; for( long long s = 2; s <= 2*N-2; s+=2 ) { for( long long x = 1, y = s-1; x <= s-1; x++, y-- ) { dp[x+1][y+1] += dp[x][y]*(x*y+1); dp[x+2][y+0] += dp[x][y]*(x*(x+1)/2); dp[x+0][y+2] += dp[x][y]*(y*(y+1)/2); } } for( int k = 1; k <= 2*N+1; k++ ) { cout << dp[k-1][2*N-k+1].val() << endl; } }