結果

問題 No.2899 Taffy Permutation
ユーザー vjudge1vjudge1
提出日時 2024-09-29 21:42:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 2,346 ms
コンパイル使用メモリ 206,188 KB
実行使用メモリ 65,920 KB
最終ジャッジ日時 2024-09-29 21:42:50
合計ジャッジ時間 3,705 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 80 ms
65,920 KB
testcase_11 WA -
testcase_12 AC 79 ms
65,792 KB
testcase_13 WA -
testcase_14 AC 78 ms
65,664 KB
testcase_15 WA -
testcase_16 AC 79 ms
65,664 KB
testcase_17 WA -
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 80 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
int main(){
  int n;
  cin>>n;
  string s;
  cin>>s;
  s=" "+s;
  vector<vector<long long>> dp(n+1,vector<long long> (n+1));
  vector<vector<long long>> sum(n+1,vector<long long> (n+1));
  dp[0][n]=1;
    for (int i=1; i<=n; i++) {
        sum[0][i]=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-j+1)+sum[i-1][j+1])%mod;
            } else {
                dp[i][j]=(j+1)*dp[i-1][j+1]%mod;
            }
        }
        for (int j=n; j; j--) {
            sum[i][j]=(sum[i][j+1]+dp[i][j])%mod;
        }
    }
    cout << dp[n][0];
  return 0;
}
0