結果
問題 | No.2899 Taffy Permutation |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 20:44:51 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 833 bytes |
コンパイル時間 | 2,663 ms |
コンパイル使用メモリ | 247,412 KB |
実行使用メモリ | 34,928 KB |
最終ジャッジ日時 | 2024-09-25 20:44:56 |
合計ジャッジ時間 | 3,805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 49 ms
34,928 KB |
testcase_10 | WA | - |
testcase_11 | AC | 51 ms
34,700 KB |
testcase_12 | AC | 46 ms
34,716 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 48 ms
34,640 KB |
testcase_16 | AC | 49 ms
34,668 KB |
testcase_17 | AC | 48 ms
34,624 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> #define _1 (__int128)1 using namespace std; using ll = long long; void FileIO (const string s) { freopen(string(s + ".in").c_str(), "r", stdin); freopen(string(s + ".out").c_str(), "w", stdout); } const int N = 2010, mod = 998244353; int n, dp[N][N], sum[N][N]; string s; signed main () { ios::sync_with_stdio(0), cin.tie(0); // FileIO(""); cin >> n >> s, s = " " + s; for (int i = 1; i <= n; i++) sum[0][i] = 1; for (int i = 1; i <= n; i++) { for (int j = 0; j <= n; j++) { if (s[i] == '0') dp[i][j] = ((1ll * dp[i - 1][j] * (n - i - j + 1) + sum[i - 1][j + 1]) % mod + mod) % mod; else dp[i][j] = 1ll * (j + 1) * dp[i - 1][j + 1] % mod; } for (int j = n; j; j--) sum[i][j] = (sum[i][j + 1] + dp[i][j]) % mod; } cout << dp[n][0]; return 0; }