結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-25 19:37:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 73,324 KB
実行使用メモリ 34,928 KB
最終ジャッジ日時 2024-09-25 19:37:09
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 67 ms
34,928 KB
testcase_10 AC 66 ms
34,924 KB
testcase_11 AC 66 ms
34,796 KB
testcase_12 AC 61 ms
34,668 KB
testcase_13 AC 61 ms
34,672 KB
testcase_14 AC 61 ms
34,796 KB
testcase_15 AC 65 ms
34,796 KB
testcase_16 AC 64 ms
34,668 KB
testcase_17 AC 64 ms
34,796 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 70 ms
34,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;

const int MAXN = 2005, Mod = 998244353;

string s;
int T, n, m, a[MAXN], dp[MAXN][MAXN], d[MAXN][MAXN];

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