結果
問題 | No.2137 Stairs of Permutation |
ユーザー | ぷら |
提出日時 | 2022-11-25 22:49:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 782 ms / 2,000 ms |
コード長 | 1,587 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 202,800 KB |
実行使用メモリ | 315,976 KB |
最終ジャッジ日時 | 2024-10-02 05:23:41 |
合計ジャッジ時間 | 11,707 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 132 ms
55,040 KB |
testcase_03 | AC | 542 ms
222,464 KB |
testcase_04 | AC | 448 ms
184,832 KB |
testcase_05 | AC | 347 ms
143,048 KB |
testcase_06 | AC | 720 ms
294,144 KB |
testcase_07 | AC | 767 ms
310,144 KB |
testcase_08 | AC | 84 ms
36,352 KB |
testcase_09 | AC | 40 ms
18,304 KB |
testcase_10 | AC | 114 ms
48,968 KB |
testcase_11 | AC | 692 ms
280,960 KB |
testcase_12 | AC | 261 ms
108,484 KB |
testcase_13 | AC | 371 ms
152,396 KB |
testcase_14 | AC | 563 ms
224,896 KB |
testcase_15 | AC | 773 ms
310,400 KB |
testcase_16 | AC | 259 ms
104,064 KB |
testcase_17 | AC | 221 ms
91,776 KB |
testcase_18 | AC | 341 ms
140,800 KB |
testcase_19 | AC | 285 ms
116,992 KB |
testcase_20 | AC | 192 ms
77,952 KB |
testcase_21 | AC | 757 ms
305,792 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 782 ms
315,976 KB |
testcase_24 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 998244353; long long fac[200005], finv[200005], inv[200005]; void COMinit() { fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1; for (int i = 2; i < 200005; i++) { fac[i] = fac[i - 1] * i % mod; inv[i] = mod - inv[mod % i] * (mod / i) % mod; finv[i] = finv[i - 1] * inv[i] % mod; } } long long COM(int n, int k){ if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % mod) % mod; } long long choose(int n,int k) { if(n < 0 || k < 0) return 0; if(n == 0) return 1; return COM(n+k-1,k-1); } long long modpow(long long a,long long b) { long long ans = 1; while(b) { if(b & 1) { (ans *= a) %= mod; } (a *= a) %= mod; b /= 2; } return ans; } void mpl(int &x,int y) { x += y; if(x >= mod) x -= mod; } int dp[10001000][4]; int dp2[10001000][4]; int main() { int N; cin >> N; int ans = 0; dp[0][0] = 1; dp2[0][0] = 1; for(int i = 0; i < N; i++) { for(int j = 0; j <= 3; j++) { mpl(dp[i+1][j],1ll*dp[i][j]*i%mod); for(int k = j; k <= j+1; k++) { if(k == 4) continue; mpl(dp[i+1][k],dp[i][j]); } mpl(dp2[i+1][j],1ll*dp2[i][j]*i%mod); if(j != 3) { mpl(dp2[i+1][j+1],dp2[i][j]); } } } mpl(ans,6ll*dp[N][3]%mod); mpl(ans,6ll*dp[N][2]%mod); mpl(ans,dp[N][1]); cout << ans << endl; }