結果

問題 No.2951 Similar to Mex
ユーザー shobonvipshobonvip
提出日時 2024-10-25 21:59:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,125 bytes
コンパイル時間 4,670 ms
コンパイル使用メモリ 267,208 KB
実行使用メモリ 11,708 KB
最終ジャッジ日時 2024-10-25 21:59:23
合計ジャッジ時間 10,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
11,316 KB
testcase_01 AC 14 ms
11,320 KB
testcase_02 AC 15 ms
11,192 KB
testcase_03 AC 15 ms
11,332 KB
testcase_04 AC 14 ms
11,192 KB
testcase_05 AC 14 ms
11,192 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 14 ms
11,188 KB
testcase_09 WA -
testcase_10 AC 14 ms
11,336 KB
testcase_11 AC 73 ms
11,452 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 137 ms
11,320 KB
testcase_15 WA -
testcase_16 AC 71 ms
11,448 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 153 ms
11,452 KB
testcase_22 AC 113 ms
11,444 KB
testcase_23 AC 209 ms
11,484 KB
testcase_24 AC 195 ms
11,448 KB
testcase_25 AC 230 ms
11,576 KB
testcase_26 AC 175 ms
11,572 KB
testcase_27 AC 275 ms
11,484 KB
testcase_28 AC 258 ms
11,576 KB
testcase_29 WA -
testcase_30 AC 285 ms
11,612 KB
testcase_31 AC 261 ms
11,576 KB
testcase_32 AC 258 ms
11,580 KB
testcase_33 WA -
testcase_34 AC 275 ms
11,576 KB
testcase_35 AC 267 ms
11,512 KB
testcase_36 AC 15 ms
11,320 KB
testcase_37 AC 15 ms
11,320 KB
testcase_38 AC 14 ms
11,192 KB
testcase_39 AC 15 ms
11,316 KB
testcase_40 AC 56 ms
11,484 KB
testcase_41 WA -
testcase_42 AC 55 ms
11,488 KB
testcase_43 WA -
testcase_44 AC 274 ms
11,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.10.25 21:49:37
**/

#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 = 998244;
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,m,k; cin >> n>>m>>k;
	vector dp(m+2, vector<mint>(m+1));
	dp[0][0] = 1;
	rep(i,1,m+2){
		rep(j,0,i){
			rep(l,0,m+1){
				if (l+i-j-1 > m) continue;
				if (min(i,k)-j >= 0){
					dp[i][l+i-j-1] += dp[j][l] * mint(i).pow(min(i,k)-j);
				}else{
					dp[i][l+i-j-1] += dp[j][l];
				}
			}
		}
	}

	vector<mint> dp2(m+1);
	rep(i,0,m+1){
		dp2[i] = mint(i).pow(n);
		rep(j,0,i){
			dp2[i] -= binom(i,j) * dp2[j];
		}
	}
	mint ans = 0;
	rep(i,1,m+1){
		ans += dp[m+1][i] * dp2[i];
	}
	cout << ans.val() << '\n';

}

0