結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-25 20:59:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 201,188 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-25 20:59:41
合計ジャッジ時間 3,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int N = 2005, mod = 998244353;

int n, d[N], dp[N][N];
char c;

int main(){
  cin >> n;
  dp[0][n] = 1;
  for(int i = 1; i <= n; ++i){
    cin >> c;
    for(int j = 0; j <= n; ++j){
      d[j] = 0;
    }
    for(int j = 0; j <= n; ++j){
      if(c == '1'){
        if(j){
          dp[i][j - 1] = (dp[i][j - 1] + 1ll * dp[i - 1][j] * j % mod) % mod;
        }
      }
      else{
        dp[i][j] = (dp[i][j] + 1ll * dp[i - 1][j] * max(0, n - i + 1 - j) % mod) % mod;
        d[0] = (d[0] + dp[i - 1][j]) % mod;
        d[j] = (d[j] + mod - dp[i - 1][j]) % mod;
      }
    }
    for(int j = 0; j <= n; ++j){
      d[j] = ((j ? d[j - 1] : 0) + d[j]) % mod;
      dp[i][j] = (dp[i][j] + d[j]) % mod;
    }
  }
  cout << dp[n][0];
  return 0;
}
0