結果

問題 No.2668 Trees on Graph Paper
ユーザー kmjpkmjp
提出日時 2024-03-09 00:37:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,039 ms / 3,000 ms
コード長 1,692 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 202,296 KB
実行使用メモリ 316,032 KB
最終ジャッジ日時 2024-09-29 21:04:31
合計ジャッジ時間 33,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 863 ms
315,904 KB
testcase_01 AC 818 ms
315,904 KB
testcase_02 AC 829 ms
316,032 KB
testcase_03 AC 839 ms
315,904 KB
testcase_04 AC 821 ms
315,904 KB
testcase_05 AC 813 ms
315,904 KB
testcase_06 AC 815 ms
315,904 KB
testcase_07 AC 824 ms
316,032 KB
testcase_08 AC 867 ms
315,904 KB
testcase_09 AC 830 ms
316,032 KB
testcase_10 AC 812 ms
315,904 KB
testcase_11 AC 813 ms
315,904 KB
testcase_12 AC 812 ms
315,776 KB
testcase_13 AC 810 ms
315,904 KB
testcase_14 AC 947 ms
316,032 KB
testcase_15 AC 1,009 ms
316,032 KB
testcase_16 AC 915 ms
315,904 KB
testcase_17 AC 821 ms
316,032 KB
testcase_18 AC 1,008 ms
315,904 KB
testcase_19 AC 973 ms
315,904 KB
testcase_20 AC 993 ms
315,904 KB
testcase_21 AC 979 ms
315,904 KB
testcase_22 AC 987 ms
315,904 KB
testcase_23 AC 925 ms
315,904 KB
testcase_24 AC 1,029 ms
315,904 KB
testcase_25 AC 1,039 ms
315,904 KB
testcase_26 AC 1,036 ms
315,904 KB
testcase_27 AC 1,030 ms
315,904 KB
testcase_28 AC 820 ms
316,032 KB
testcase_29 AC 849 ms
316,032 KB
testcase_30 AC 816 ms
315,904 KB
testcase_31 AC 841 ms
316,032 KB
testcase_32 AC 832 ms
315,904 KB
権限があれば一括ダウンロードができます

ソースコード

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;}
//-------------------------------------------------------

ll N;
ll mo;

ll dp[10101010][2][2];

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;
	
	cin>>N>>mo;
	
	dp[0][0][1]=1;
	for(i=1;i<10001010;i++) {
		//赤→四角→赤
		dp[i][1][0]+=dp[i-1][1][0];
		//赤→四角→白
		dp[i][0][1]+=i*dp[i-1][1][0];
		//白→四角→白
		dp[i][0][1]+=i*dp[i-1][0][0]%mo*(i-1);
		//白→四角→赤
		dp[i][1][0]+=dp[i-1][0][0]%mo*(i-1);

		//赤→白
		dp[i][0][0]+=dp[i-1][1][0];
		//白→白
		dp[i][0][0]+=dp[i-1][0][0];
		dp[i][0][1]+=dp[i-1][0][1];
		//白→赤
		dp[i][1][0]+=dp[i-1][0][1];
		
		dp[i][0][0]%=mo;
		dp[i][1][0]%=mo;
		dp[i][0][1]%=mo;
		dp[i][1][1]%=mo;
	}
	
	ll p2=0,p3=0;
	
	ll ret=1;
	
	for(i=2;i<N;i++) {
		(ret*=(dp[i*2-1][0][0]+dp[i*2-1][1][0]))%=mo;
	}
	for(i=1;i<=2*N-1;i++) ret=ret*i%mo;
	
	cout<<ret<<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