結果

問題 No.2899 Taffy Permutation
ユーザー lgswdnlgswdn
提出日時 2024-08-19 14:59:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,683 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 202,452 KB
実行使用メモリ 34,552 KB
最終ジャッジ日時 2024-08-19 14:59:40
合計ジャッジ時間 3,028 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 16 ms
34,244 KB
testcase_10 AC 16 ms
33,732 KB
testcase_11 AC 15 ms
34,168 KB
testcase_12 AC 10 ms
33,768 KB
testcase_13 AC 11 ms
33,772 KB
testcase_14 AC 11 ms
33,744 KB
testcase_15 AC 12 ms
34,552 KB
testcase_16 AC 12 ms
33,592 KB
testcase_17 AC 12 ms
33,388 KB
testcase_18 AC 1 ms
6,948 KB
testcase_19 AC 12 ms
34,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//Shirasu Azusa 2024.8
#include<bits/stdc++.h>
#define fi first
#define se second
#define eb emplace_back
#define mp make_pair
using namespace std;
typedef long double ld;
typedef long long ll;
typedef unsigned long long ull;
typedef __int128 i128;
template<typename T,typename U>
T ceil(T x, U y) {return (x>0?(x+y-1)/y:x/y);}
template<typename T,typename U>
T floor(T x, U y) {return (x>0?x/y:(x-y+1)/y);}
template<class T,class S>
bool chmax(T &a,const S b) {return (a<b?a=b,1:0);}
template<class T,class S>
bool chmin(T &a,const S b) {return (a>b?a=b,1:0);}
int popcnt(int x) {return __builtin_popcount(x);}
int popcnt(ll x) {return __builtin_popcountll(x);}
int topbit(int x) {return (x==0?-1:31-__builtin_clz(x));}
int topbit(ll x) {return (x==0?-1:63-__builtin_clzll(x));}
int lowbit(int x) {return (x==0?-1:__builtin_ctz(x));}
int lowbit(ll x) {return (x==0?-1:__builtin_ctzll(x));}

#define int long long
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define per(i,a,b) for(int i=(a);i>=(b);i--)
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<pii> vp;
int read() {
  int x=0,w=1; char c=getchar(); 
  while(!isdigit(c)) {if(c=='-') w=-1; c=getchar();}
  while(isdigit(c)) {x=x*10+(c-'0'); c=getchar();}
  return x*w;
}

const int N=2005,mod=998244353;
int f[N][N],n;
char s[N];

signed main() {
  scanf("%lld%s",&n,s+1);
  f[0][0]=1;
  rep(i,1,n) {
    if(s[i]=='0') {
      int sum=f[i-1][0];
      rep(j,1,i) {
        f[i][j]=(sum+f[i-1][j-1]*(j-1))%mod;
        sum=(sum+f[i-1][j])%mod;
      }
    } else {
      rep(j,0,i-1) f[i][j]=f[i-1][j]*(i-j)%mod;
    }
  }
  int ans=0;
  rep(i,0,n) ans=(ans+f[n][i])%mod;
  printf("%lld\n",ans);
  return 0;
}
0