結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-25 19:34:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 73,088 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2024-09-25 19:34:48
合計ジャッジ時間 2,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 63 ms
34,688 KB
testcase_13 AC 62 ms
34,688 KB
testcase_14 AC 62 ms
34,816 KB
testcase_15 AC 64 ms
34,560 KB
testcase_16 WA -
testcase_17 AC 64 ms
34,688 KB
testcase_18 WA -
testcase_19 AC 64 ms
34,688 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') {
        if (j) dp[i + 1][j - 1] = (dp[i + 1][j - 1] + 1ll * j * dp[i][j]) % Mod;
      } else {
        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