結果

問題 No.2936 Sum of Square of Mex
ユーザー nouka28nouka28
提出日時 2024-10-12 07:54:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 5,828 ms
コンパイル使用メモリ 317,272 KB
実行使用メモリ 12,200 KB
最終ジャッジ日時 2024-10-12 07:54:27
合計ジャッジ時間 8,998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 15 ms
6,816 KB
testcase_03 AC 4 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 4 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 81 ms
11,748 KB
testcase_09 AC 70 ms
11,392 KB
testcase_10 AC 47 ms
9,004 KB
testcase_11 AC 83 ms
11,696 KB
testcase_12 AC 47 ms
8,980 KB
testcase_13 AC 82 ms
11,824 KB
testcase_14 AC 73 ms
11,444 KB
testcase_15 AC 76 ms
11,408 KB
testcase_16 AC 90 ms
12,068 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 90 ms
12,196 KB
testcase_19 AC 91 ms
12,196 KB
testcase_20 AC 89 ms
12,068 KB
testcase_21 AC 92 ms
12,068 KB
testcase_22 AC 90 ms
12,200 KB
testcase_23 AC 92 ms
12,192 KB
testcase_24 AC 86 ms
12,064 KB
testcase_25 AC 85 ms
12,068 KB
testcase_26 AC 90 ms
12,068 KB
testcase_27 AC 92 ms
12,072 KB
testcase_28 AC 89 ms
12,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/all>
using namespace atcoder;
using mint=atcoder::modint998244353;

mint fac[200009],fac2[200009];
mint ifac[200009];

int main(){
	int n,m;cin>>n>>m;
	
	//事前計算
	fac[0]=1;for(int i=0;i<n;i++)fac[i+1]=(i+1)*fac[i];
	for(int i=0;i<=n;i++)ifac[i]=fac[i].inv();
	fac2[0]=1;for(int i=0;i<n;i++)fac2[i+1]=(m+1-i)*fac2[i];

	//第二種スターリング数の計算
	vector<mint> f(n+1),g(n+1);
	for(int i=0;i<=n;i++){
		f[i]=mint(i).pow(n)*ifac[i];
		g[i]=(i&1?-1:1)*ifac[i];
	}
	vector<mint> Stirling=convolution(f,g);
	
	//_{M+1}C_{r} を求める
	auto comb=[&](int r)->mint {
		if(r<0||m+1<r)return 0;
		return fac2[r]*ifac[r];
	};

	mint ans=0;

	//種類数をiと決め打ち
	for(int i=1;i<=min(n,m+1);i++){
		if(i==m+1){
			ans+=fac[i]*Stirling[i]*(m+1)*(m+1);
		}else{
			mint tmp=0;
			tmp+=comb(i)*i*i;
			tmp-=comb(i-1)*(2*i-1)*(m-i+1);
			tmp+=comb(i-2)*(m-i+1)*(m-i+2);
			ans+=fac[i]*Stirling[i]*tmp;
		}
	}
	
	cout<<ans.val()<<endl;
}
0