結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-25 19:45:46
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 163,804 KB
実行使用メモリ 66,100 KB
最終ジャッジ日時 2024-09-25 19:45:51
合計ジャッジ時間 4,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 81 ms
66,100 KB
testcase_10 AC 80 ms
66,068 KB
testcase_11 AC 80 ms
66,088 KB
testcase_12 AC 74 ms
66,024 KB
testcase_13 AC 73 ms
65,920 KB
testcase_14 AC 74 ms
65,920 KB
testcase_15 AC 77 ms
65,920 KB
testcase_16 AC 77 ms
65,920 KB
testcase_17 AC 79 ms
65,664 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 79 ms
65,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2e3 + 5;
const int mod = 998244353;

int n;
string a;
long long s[N][N], dp[N][N];

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