結果

問題 No.2899 Taffy Permutation
ユーザー shobonvipshobonvip
提出日時 2024-09-20 22:38:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,627 ms / 2,000 ms
コード長 2,163 bytes
コンパイル時間 5,090 ms
コンパイル使用メモリ 268,248 KB
実行使用メモリ 34,752 KB
最終ジャッジ日時 2024-09-20 22:39:12
合計ジャッジ時間 15,053 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
19,136 KB
testcase_01 AC 25 ms
19,132 KB
testcase_02 AC 25 ms
19,264 KB
testcase_03 AC 25 ms
19,132 KB
testcase_04 AC 26 ms
19,136 KB
testcase_05 AC 25 ms
19,132 KB
testcase_06 AC 25 ms
19,132 KB
testcase_07 AC 25 ms
19,136 KB
testcase_08 AC 27 ms
19,140 KB
testcase_09 AC 1,576 ms
34,752 KB
testcase_10 AC 1,624 ms
34,624 KB
testcase_11 AC 1,627 ms
34,628 KB
testcase_12 AC 222 ms
34,620 KB
testcase_13 AC 235 ms
34,492 KB
testcase_14 AC 223 ms
34,620 KB
testcase_15 AC 899 ms
34,624 KB
testcase_16 AC 907 ms
34,500 KB
testcase_17 AC 940 ms
34,496 KB
testcase_18 AC 27 ms
19,008 KB
testcase_19 AC 920 ms
34,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

//defmodfact
const int COMinitMAX = 1998244;
mint fact[COMinitMAX+1], factinv[COMinitMAX+1];

void modfact(){
	fact[0] = 1;
	for (int i=1; i<=COMinitMAX; i++){
		fact[i] = fact[i-1] * i;
	}
	factinv[COMinitMAX] = fact[COMinitMAX].inv();
	for (int i=COMinitMAX-1; i>=0; i--){
		factinv[i] = factinv[i+1] * (i+1);
	}
}

mint binom(int a, int b){
	if (a<b || b<0) return mint(0);
	return fact[a]*factinv[b]*factinv[a-b];
}
//--------


int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	modfact();
	
	int n; cin >> n;
	string s; cin >> s;
	vector<int> a(n);
	rep(i,0,n){
		a[i] = (s[i] == '1');
	}

	vector dp(n+1, vector<mint>(n+1));
	dp[0][0] = 1;
	// 下に何個あるか ?

	rep(i,0,n){
		if (a[i] == 0){
			// 下から取る.
			rep(j,1,n+1){
				if (n-(j+i) < 0) break;
				dp[i+1][j-1] += dp[i][j] * j;
			}
			// 上を選ぶ
			rep(j,0,n+1){
				if (n-(j+i) < 0) break;
				rep(k,1,n-(j+i)+1){
					dp[i+1][k+j-1] += dp[i][j];
				}
			}
		}else{
			// 上を選ぶ
			rep(j,0,n+1){
				if (n-(j+i) < 0) break;
				dp[i+1][j] += dp[i][j] * (n-(j+i));
			}
		}
	}
	cout << sum(dp[n]).val() << '\n';
		
}

0