結果
問題 | No.2917 二重木 |
ユーザー | kmjp |
提出日時 | 2024-10-05 02:14:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,560 bytes |
コンパイル時間 | 2,229 ms |
コンパイル使用メモリ | 202,536 KB |
実行使用メモリ | 22,152 KB |
最終ジャッジ日時 | 2024-10-05 02:14:19 |
合計ジャッジ時間 | 14,749 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
22,152 KB |
testcase_01 | AC | 9 ms
10,776 KB |
testcase_02 | AC | 8 ms
11,340 KB |
testcase_03 | AC | 9 ms
10,988 KB |
testcase_04 | AC | 9 ms
10,908 KB |
testcase_05 | AC | 9 ms
10,836 KB |
testcase_06 | AC | 9 ms
11,028 KB |
testcase_07 | AC | 8 ms
11,004 KB |
testcase_08 | AC | 8 ms
10,912 KB |
testcase_09 | AC | 8 ms
10,764 KB |
testcase_10 | AC | 8 ms
11,152 KB |
testcase_11 | AC | 8 ms
10,792 KB |
testcase_12 | AC | 9 ms
11,040 KB |
testcase_13 | AC | 8 ms
10,904 KB |
testcase_14 | AC | 9 ms
11,304 KB |
testcase_15 | AC | 9 ms
11,064 KB |
testcase_16 | AC | 9 ms
11,272 KB |
testcase_17 | AC | 8 ms
10,736 KB |
testcase_18 | AC | 8 ms
11,212 KB |
testcase_19 | AC | 9 ms
11,140 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 821 ms
10,944 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
#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); 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; }