結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-25 21:09:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 707 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 203,144 KB
実行使用メモリ 30,240 KB
最終ジャッジ日時 2024-09-25 21:09:06
合計ジャッジ時間 5,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const int N = 2010, mod = 998244353;

int n;
ll dp[N][N];
string s;

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    cin >> n >> s, s = ' ' + s;
    dp[0][n] = 1;
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j <= n; j++) {
            if (s[i] == '0') {
                (dp[i][j] += dp[i - 1][j] * (n - i + 1 - j) % mod) %= mod;
                for (int k = 0; k < j; k++) {
                    (dp[i][k] += dp[i - 1][j]) %= mod;
                }
            } else {
                if (j) (dp[i][j - 1] += dp[i - 1][j] * j % mod) %= mod;
            }
        }
    }
    cout << dp[n][0];
    return 0;
}
////
0