結果

問題 No.2668 Trees on Graph Paper
ユーザー 沙耶花沙耶花
提出日時 2024-03-08 22:13:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,907 ms / 3,000 ms
コード長 994 bytes
コンパイル時間 4,209 ms
コンパイル使用メモリ 266,024 KB
実行使用メモリ 425,416 KB
最終ジャッジ日時 2024-09-29 19:46:02
合計ジャッジ時間 30,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 207 ms
425,256 KB
testcase_01 AC 283 ms
425,172 KB
testcase_02 AC 178 ms
425,356 KB
testcase_03 AC 373 ms
425,336 KB
testcase_04 AC 173 ms
425,308 KB
testcase_05 AC 175 ms
425,268 KB
testcase_06 AC 174 ms
425,256 KB
testcase_07 AC 175 ms
425,260 KB
testcase_08 AC 173 ms
425,416 KB
testcase_09 AC 175 ms
425,260 KB
testcase_10 AC 175 ms
425,248 KB
testcase_11 AC 174 ms
425,316 KB
testcase_12 AC 215 ms
425,300 KB
testcase_13 AC 247 ms
425,168 KB
testcase_14 AC 1,298 ms
425,328 KB
testcase_15 AC 1,854 ms
425,416 KB
testcase_16 AC 953 ms
425,376 KB
testcase_17 AC 319 ms
425,232 KB
testcase_18 AC 1,833 ms
425,300 KB
testcase_19 AC 1,546 ms
425,304 KB
testcase_20 AC 1,661 ms
425,388 KB
testcase_21 AC 1,597 ms
425,416 KB
testcase_22 AC 1,632 ms
425,312 KB
testcase_23 AC 1,024 ms
425,304 KB
testcase_24 AC 1,907 ms
425,388 KB
testcase_25 AC 1,836 ms
425,196 KB
testcase_26 AC 1,840 ms
425,364 KB
testcase_27 AC 1,836 ms
425,260 KB
testcase_28 AC 241 ms
425,412 KB
testcase_29 AC 243 ms
425,224 KB
testcase_30 AC 244 ms
425,308 KB
testcase_31 AC 253 ms
425,280 KB
testcase_32 AC 243 ms
425,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	
	int n,m;
	cin>>n>>m;
	mint::set_mod(m);
	
	mint dp[12000000][3][3];
	rep(i,12000000){
		rep(j,3){
			rep(k,3){
				dp[i][j][k] = 0;
			}
		}
	}
	dp[1][2][2] = 1;
	for(int i=2;i<=n*2;i++){
		rep(j,3){
			rep(k,3){
				rep(l,3){
					if((i-1+k) > (i+l))continue;
					mint nv = dp[i-1][j][k];
					if(l!=0 && k!=1 && j!=2){
						nv *= i-2;
					}
					dp[i][k][l] += nv;
				}
			}
		}
	}
	mint ans = 1;
	for(int i=3;i<=n*2-1;i+=2){
		mint sum = 0;
		rep(j,3){
			rep(k,3){
				if(k==2)continue;
				mint v = dp[i-1][j][k];
				sum += v;
			}
		}
		ans *= sum;
		
	}
//	cout<<ans.val()<<endl;
	rep(i,n*2-1){
		
		//cout<<i+1<<endl;
		ans *= i+1;
	}
	
	cout<<ans.val()<<endl;
	
	return 0;
}
0