結果

問題 No.2917 二重木
ユーザー kmjpkmjp
提出日時 2024-10-05 02:14:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,563 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 204,368 KB
実行使用メモリ 18,084 KB
最終ジャッジ日時 2024-10-05 02:15:13
合計ジャッジ時間 17,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
18,084 KB
testcase_01 AC 8 ms
10,776 KB
testcase_02 AC 8 ms
11,160 KB
testcase_03 AC 9 ms
11,008 KB
testcase_04 AC 8 ms
10,912 KB
testcase_05 AC 8 ms
11,260 KB
testcase_06 AC 8 ms
11,040 KB
testcase_07 AC 8 ms
11,236 KB
testcase_08 AC 8 ms
11,240 KB
testcase_09 AC 8 ms
10,888 KB
testcase_10 AC 8 ms
10,980 KB
testcase_11 AC 8 ms
10,812 KB
testcase_12 AC 9 ms
11,504 KB
testcase_13 AC 9 ms
11,344 KB
testcase_14 AC 8 ms
11,016 KB
testcase_15 AC 9 ms
11,040 KB
testcase_16 AC 9 ms
10,984 KB
testcase_17 AC 9 ms
10,900 KB
testcase_18 AC 8 ms
10,732 KB
testcase_19 AC 8 ms
11,008 KB
testcase_20 AC 15 ms
11,284 KB
testcase_21 AC 89 ms
11,060 KB
testcase_22 AC 359 ms
11,260 KB
testcase_23 AC 777 ms
10,904 KB
testcase_24 AC 1,186 ms
10,904 KB
testcase_25 AC 1,520 ms
10,932 KB
testcase_26 AC 2,319 ms
10,952 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
ll mo;

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


ll dp[1010];
ll C[2020];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>mo;
	
	C[1]=C[2]=1;
	for(i=3;i<=1000;i++) C[i]=modpow(i,i-2);
	
	ll ret=0;
	
	for(i=1;i<=N;i++) {
		ZERO(dp);
		dp[i]=C[i]*comb(N,i)%mo;
		for(j=i;j<N;j++) for(x=1;j+x<=N;x++) (dp[j+x]+=dp[j]*comb(N-j-1,x-1)%mo*C[x]%mo*x*i)%=mo;
		ret+=dp[N];
	}
	
	cout<<ret%mo<<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