結果
問題 | No.2528 pop_(backfront or not) |
ユーザー | arad |
提出日時 | 2023-11-03 21:39:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,003 ms / 2,000 ms |
コード長 | 2,606 bytes |
コンパイル時間 | 4,568 ms |
コンパイル使用メモリ | 271,976 KB |
実行使用メモリ | 175,248 KB |
最終ジャッジ日時 | 2024-09-25 19:40:33 |
合計ジャッジ時間 | 11,083 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 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 | 5 ms
5,376 KB |
testcase_06 | AC | 7 ms
5,376 KB |
testcase_07 | AC | 17 ms
5,932 KB |
testcase_08 | AC | 26 ms
8,116 KB |
testcase_09 | AC | 75 ms
15,472 KB |
testcase_10 | AC | 239 ms
45,172 KB |
testcase_11 | AC | 257 ms
47,740 KB |
testcase_12 | AC | 382 ms
82,836 KB |
testcase_13 | AC | 425 ms
82,968 KB |
testcase_14 | AC | 499 ms
91,604 KB |
testcase_15 | AC | 809 ms
164,996 KB |
testcase_16 | AC | 962 ms
174,860 KB |
testcase_17 | AC | 1,003 ms
174,992 KB |
testcase_18 | AC | 951 ms
175,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using VD = vector<double>; using VVD = vector<VD>; using VS = vector<string>; using P = pair<ll,ll>; using VP = vector<P>; #define rep(i, n) for (ll i = 0; i < ll(n); i++) #define out(x) cout << x << endl #define dout(x) cout << fixed << setprecision(10) << x << endl #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() #define sz(x) (int)(x.size()) #define re0 return 0 #define pcnt __builtin_popcountll template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr int inf = 1e9; constexpr ll INF = 1e18; //using mint = modint1000000007; using mint = modint998244353; int di[4] = {1,0,-1,0}; int dj[4] = {0,1,0,-1}; // combination mod prime // https://youtu.be/8uowVvQ_-Mo?t=6002 // https://youtu.be/Tgd_zLfRZOQ?t=9928 struct modinv { int n; vector<mint> d; modinv(): n(2), d({0,1}) {} mint operator()(int i) { while (n <= i) d.push_back(-d[mint::mod()%n]*(mint::mod()/n)), ++n; return d[i]; } mint operator[](int i) const { return d[i];} } invs; struct modfact { int n; vector<mint> d; modfact(): n(2), d({1,1}) {} mint operator()(int i) { while (n <= i) d.push_back(d.back()*n), ++n; return d[i]; } mint operator[](int i) const { return d[i];} } facts; struct modfactinv { int n; vector<mint> d; modfactinv(): n(2), d({1,1}) {} mint operator()(int i) { while (n <= i) d.push_back(d.back()*invs(n)), ++n; return d[i]; } mint operator[](int i) const { return d[i];} } ifacts; mint comb(int n, int k) { if (n < k || k < 0) return 0; return facts(n)*ifacts(k)*ifacts(n-k); } int main(){ ll n; cin >> n; unordered_map<ll,mint> mem; auto dp = [&](auto &dp,ll lc,ll rc) -> mint { if(mem.count(lc*(2*n+1)+rc)){ return mem[lc*(2*n+1)+rc]; } if(lc == 1 && rc == 1) return 1; if(lc == 0 || rc == 0) return 0; mint res = 0; res += dp(dp,lc-1,rc-1); if(2 <= lc && 2 <= rc){ res += dp(dp,lc-1,rc-1)*(lc-1)*(rc-1); } if(3 <= lc){ res += dp(dp,lc-2,rc)*comb(lc-1,2); } if(3 <= rc){ res += dp(dp,lc,rc-2)*comb(rc-1,2); } return mem[lc*(2*n+1)+rc] = res; }; rep(i,2*n+1){ out(dp(dp,i,2*n-i).val()); } }