結果
問題 | No.140 みんなで旅行 |
ユーザー | ytft |
提出日時 | 2021-03-15 22:30:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,164 bytes |
コンパイル時間 | 1,593 ms |
コンパイル使用メモリ | 173,648 KB |
実行使用メモリ | 818,048 KB |
最終ジャッジ日時 | 2024-11-07 11:05:34 |
合計ジャッジ時間 | 3,782 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | MLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int N; int MOD=pow(10,9)+7; cin>>N; vector<vector<vector<int>>> dp(N,vector<vector<int>>(2*N+1,vector<int>(2*N+1))); for(int i=0;i<N;i++){ for(int j=0;j<=2*N;j++){ for(int k=0;k<=2*N;k++){ if(i==0){ if((j==0 && k==2) || (j==1 && k==0)){ dp[i][j][k]=1; }else{ dp[i][j][k]=0; } }else{ dp[i][j][k]=(dp[i-1][j][k]*(k+j)*(k+j-1)+dp[i-1][j][k]*j)%MOD; if(k>=2){ dp[i][j][k]=(dp[i][j][k]+dp[i-1][j][k-2])%MOD; } if(k>=1){ dp[i][j][k]=(dp[i][j][k]+dp[i-1][j][k-1]*2*(j+k-1))%MOD; } if(j>=1){ dp[i][j][k]=(dp[i][j][k]+dp[i-1][j-1][k]+dp[i-1][j-1][k+1]*(k+1))%MOD; } } } } } int ans=0; for(int j=0;j<=2*N;j++){ ans=(ans+dp[N-1][j][0])%MOD; } cout<<ans<<endl; }