結果

問題 No.2668 Trees on Graph Paper
ユーザー askr58askr58
提出日時 2024-03-08 23:50:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 763 ms / 3,000 ms
コード長 481 bytes
コンパイル時間 2,684 ms
コンパイル使用メモリ 250,176 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 20:56:23
合計ジャッジ時間 11,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 67 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 459 ms
6,816 KB
testcase_15 AC 700 ms
6,816 KB
testcase_16 AC 351 ms
6,816 KB
testcase_17 AC 36 ms
6,816 KB
testcase_18 AC 668 ms
6,816 KB
testcase_19 AC 570 ms
6,816 KB
testcase_20 AC 613 ms
6,820 KB
testcase_21 AC 589 ms
6,820 KB
testcase_22 AC 603 ms
6,820 KB
testcase_23 AC 384 ms
6,820 KB
testcase_24 AC 762 ms
6,820 KB
testcase_25 AC 763 ms
6,820 KB
testcase_26 AC 760 ms
6,816 KB
testcase_27 AC 762 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	ll n,m;
	cin>>n>>m;
	vector<vector<ll>> dp(2,vector<ll>(3));
	dp[0][0]=1%m;
	dp[0][1]=2%m;
	dp[0][2]=3%m;
	ll ans=1;
	for(ll i=4;i<2*n;i++){
		dp[1][0]=(dp[0][1]+dp[0][0])%m;
		dp[1][1]=(dp[0][0]*(i-2)%m+dp[0][1]+dp[0][2])%m;
		dp[1][2]=(dp[0][0]*((i-2)*(i-1)%m)+dp[0][1]*(i-1)%m+dp[0][2])%m;
		if(i&1)ans=ans*dp[1][0]%m;
		swap(dp[0],dp[1]);
	}
	for(ll i=1;i<2*n;i++)ans=ans*i%m;
	cout<<ans<<endl;

}
0