結果
問題 | No.2899 Taffy Permutation |
ユーザー | 👑 獅子座じゃない人 |
提出日時 | 2024-09-18 14:56:01 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 3,135 ms |
コンパイル使用メモリ | 183,780 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-09-18 14:57:09 |
合計ジャッジ時間 | 4,027 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> using namespace std; #include <atcoder/all> using namespace atcoder; using mint=modint998244353; int main(void) { int n; cin >> n; string s; cin >> s; vector dp(n, vector<mint>(n)); if(s[0]=='1'){ dp[0][0]=n; } else { for(int j=0;j<n;++j){ dp[0][j]=1; } } for(int i=1;i<n;++i){ if(s[i]=='1'){ for(int j=1;i+j<n;++j){ dp[i][j-1]=dp[i-1][j]*(n-i-j); } } else { mint dpsum=0; for(int j=0;j<n;++j){ dpsum+=dp[i-1][j]; dp[i][j]+=dpsum; } for(int j=1;j<n;++j){ dp[i][j-1]+=dp[i-1][j]*j; } } } cout << dp[n-1][0].val() << endl; return 0; }