結果

問題 No.2951 Similar to Mex
ユーザー 沙耶花沙耶花
提出日時 2024-10-25 21:57:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,567 bytes
コンパイル時間 4,536 ms
コンパイル使用メモリ 269,704 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-10-25 21:58:03
合計ジャッジ時間 8,583 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
11,648 KB
testcase_01 AC 22 ms
11,648 KB
testcase_02 AC 21 ms
11,648 KB
testcase_03 AC 21 ms
11,648 KB
testcase_04 AC 22 ms
11,648 KB
testcase_05 AC 22 ms
11,648 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 22 ms
11,648 KB
testcase_09 WA -
testcase_10 AC 21 ms
11,648 KB
testcase_11 AC 45 ms
12,028 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 60 ms
12,032 KB
testcase_15 WA -
testcase_16 AC 48 ms
12,032 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 73 ms
12,160 KB
testcase_22 AC 61 ms
12,288 KB
testcase_23 AC 104 ms
12,416 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 100 ms
12,288 KB
testcase_26 AC 87 ms
12,288 KB
testcase_27 AC 114 ms
12,416 KB
testcase_28 AC 109 ms
12,416 KB
testcase_29 WA -
testcase_30 AC 114 ms
12,416 KB
testcase_31 AC 108 ms
12,416 KB
testcase_32 AC 109 ms
12,544 KB
testcase_33 WA -
testcase_34 AC 114 ms
12,544 KB
testcase_35 AC 110 ms
12,416 KB
testcase_36 AC 22 ms
11,648 KB
testcase_37 AC 22 ms
11,648 KB
testcase_38 AC 22 ms
11,648 KB
testcase_39 AC 21 ms
11,776 KB
testcase_40 AC 80 ms
12,416 KB
testcase_41 WA -
testcase_42 AC 80 ms
12,416 KB
testcase_43 WA -
testcase_44 AC 115 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

struct combi{
	deque<mint> kaijou;
	deque<mint> kaijou_;
	
	combi(int n){
		kaijou.push_back(1);
		for(int i=1;i<=n;i++){
			kaijou.push_back(kaijou[i-1]*i);
		}
		
		mint b=kaijou[n].inv();
		
		kaijou_.push_front(b);
		for(int i=1;i<=n;i++){
			int k=n+1-i;
			kaijou_.push_front(kaijou_[0]*k);
		}
	}
	
	mint combination(int n,int r){
		if(r>n)return 0;
		mint a = kaijou[n]*kaijou_[r];
		a *= kaijou_[n-r];
		return a;
	}
	
	mint junretsu(int a,int b){
		mint x = kaijou_[a]*kaijou_[b];
		x *= kaijou[a+b];
		return x;
	}
	
	mint catalan(int n){
		return combination(2*n,n)/(n+1);
	}
	
};
combi C(1000000);
int main(){
	int N,M,K;
	cin>>N>>M>>K;
	
	vector pows(M+2,vector<mint>(M+2,0));
	
	rep(i,M+2){
		pows[i][0] = 1;
		rep(j,M+1){
			pows[i][j+1] = pows[i][j]*i;
		}
	}
	vector dp(M+2,vector<mint>(M+2,0));
	dp[0][0] = 1;
	rep(i,M+2){
		rep(j,M+2){
			for(int k=j+1;k<=M+1;k++){
				int tm = min(K,k);
				tm = tm - j;
				tm = max(tm,0);
				if(i!=M+1){
					dp[i+1][k] += dp[i][j] * pows[k][tm];
				}
			}
		}
	}
	
	vector<mint> ddp(M+1,0);
	for(int i=1;i<=M;i++){
		ddp[i] = mint(i).pow(N);
		for(int j=1;j<i;j++){
			ddp[i] -= C.combination(i,j)*ddp[j];
		}
	}
	mint ans = 0;
	rep(i,M+2){
		rep(j,M+2){
			if(j!=M+1)continue;
			ans += ddp[M+1-i]*dp[i][j];
		}
	}
	cout<<ans.val()<<endl;
	
	return 0;
}
0