結果

問題 No.140 みんなで旅行
ユーザー ttkkggwwttkkggww
提出日時 2022-05-11 20:44:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,142 bytes
コンパイル時間 4,623 ms
コンパイル使用メモリ 268,256 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-07-19 06:21:34
合計ジャッジ時間 21,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,784 KB
testcase_01 AC 12 ms
6,912 KB
testcase_02 AC 463 ms
8,448 KB
testcase_03 AC 4 ms
5,760 KB
testcase_04 AC 16 ms
6,912 KB
testcase_05 AC 20 ms
6,912 KB
testcase_06 AC 24 ms
7,040 KB
testcase_07 AC 27 ms
7,040 KB
testcase_08 AC 31 ms
7,040 KB
testcase_09 AC 35 ms
6,912 KB
testcase_10 AC 39 ms
6,912 KB
testcase_11 AC 2,320 ms
14,080 KB
testcase_12 AC 377 ms
8,064 KB
testcase_13 AC 206 ms
7,680 KB
testcase_14 WA -
testcase_15 AC 2,313 ms
13,952 KB
testcase_16 AC 1,369 ms
11,392 KB
testcase_17 AC 909 ms
9,984 KB
testcase_18 AC 2,004 ms
13,312 KB
testcase_19 AC 2,130 ms
13,568 KB
testcase_20 AC 798 ms
9,472 KB
testcase_21 AC 135 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
using mint = modint1000000007;

int n;
//mint dp[556][556][556];

void solve(){
	vector<vector<vector<mint>>> dp(555+1);
	dp[0] = vector<vector<mint>>(555+1,vector<mint>(555+1));
	dp[1] = vector<vector<mint>>(555+1,vector<mint>(555+1));

	dp[1][1][1] = 1;
	dp[1][2][0] = 1;
	for(int i = 1;i<n;i++){
		dp[i+1] = vector<vector<mint>>(555+1,vector<mint>(555+1));
		for(int j = 0;j<555-1;j++){
			for(int k = 0;k<555+1;k++){
				dp[i+1][j][k+1] += dp[i][j][k] *(j-k);
				dp[i+1][j][k] += dp[i][j][k] *k;

				dp[i+1][j][k] += dp[i][j][k] * j*(j-1);

				dp[i+1][j+1][k+1] += dp[i][j][k];
				dp[i+1][j+1][k] += dp[i][j][k]*j*2;
				dp[i+1][j+2][k] += dp[i][j][k];
			}
		}
		dp[i].clear();
	}
	mint ans = 0;
	for(int i = 0;i<=n;i++){
		//cerr<<i<<':'<<dp[n][i][i].val()<<endl;
		ans += dp[n][i][i];
	}
	/*
	for(int i = 0;i<10;i++){
		for(int j = 0;j<10;j++){
			cerr<<dp[2][i][j].val()<<' ';
		}
		cout<<endl;
	}
	*/
	cout<<ans.val()<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n;
	solve();
}
0