結果

問題 No.2951 Similar to Mex
ユーザー kmjpkmjp
提出日時 2024-10-25 23:13:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,833 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 203,788 KB
実行使用メモリ 188,328 KB
最終ジャッジ日時 2024-10-25 23:13:56
合計ジャッジ時間 10,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
21,532 KB
testcase_01 AC 6 ms
14,124 KB
testcase_02 AC 13 ms
17,456 KB
testcase_03 AC 9 ms
17,024 KB
testcase_04 AC 6 ms
13,608 KB
testcase_05 AC 9 ms
16,432 KB
testcase_06 AC 9 ms
16,940 KB
testcase_07 AC 10 ms
15,660 KB
testcase_08 AC 7 ms
14,128 KB
testcase_09 AC 7 ms
13,996 KB
testcase_10 AC 7 ms
14,636 KB
testcase_11 AC 315 ms
67,376 KB
testcase_12 AC 656 ms
188,328 KB
testcase_13 AC 472 ms
141,612 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M,K;
const ll mo=998244353;
ll dp[303][303][303];  //aまで考えたとき、b個選択済みで未確定がc個
ll P[303][303];

ll comb(int P_,int Q_) {
	static const int N_=1020;
	static ll C_[N_][N_];
	
	if(C_[0][0]==0) {
		int i,j;
		FOR(i,N_) C_[i][0]=C_[i][i]=1;
		for(i=1;i<N_;i++) for(j=1;j<i;j++) C_[i][j]=(C_[i-1][j-1]+C_[i-1][j])%mo;
	}
	if(P_<0 || P_>N_ || Q_<0 || Q_>P_) return 0;
	return C_[P_][Q_];
}


ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	for(i=1;i<=302;i++) {
		P[i][0]=1;
		for(j=1;j<=302;j++) P[i][j]=P[i][j-1]*i%mo;
	}
	
	cin>>N>>M>>K;
	dp[0][0][0]=1;
	for(i=1;i<=max(M,K)+1;i++) {
		FOR(x,N+1) for(y=0;y<=i+1;y++) if(dp[i-1][x][y]) {
			ll a=dp[i-1][x][y];
			//1個も選ばない
			(dp[i][x][0]+=a*P[i][y+(i<=K)])%=mo;
			//1個以上選ぶ
			if(i<=M) {
				for(k=1;x+k<=N;k++) {
					(dp[i][x+k][y+(i<=K)]+=a*comb(N-x,k))%=mo;
				}
			}
		}
	}
	cout<<dp[max(M,K)+1][N][0]<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0