結果

問題 No.140 みんなで旅行
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-04 09:00:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,417 ms / 5,000 ms
コード長 839 bytes
コンパイル時間 1,196 ms
コンパイル使用メモリ 159,976 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-07-04 01:46:14
合計ジャッジ時間 8,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 19 ms
5,760 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1,412 ms
19,968 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 1,416 ms
19,968 KB
testcase_15 AC 1,417 ms
19,840 KB
testcase_16 AC 347 ms
12,416 KB
testcase_17 AC 113 ms
8,960 KB
testcase_18 AC 958 ms
17,408 KB
testcase_19 AC 1,115 ms
18,304 KB
testcase_20 AC 82 ms
8,064 KB
testcase_21 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#include "bits/stdc++.h"
using namespace std;

long long dp[557 * 2][557 * 2];
long long dp2[557 * 2][557 * 2];
long long mod = (int)(1e9) + 7;

int main() {
	int N;
	cin >> N;
	dp[0][0] = 1;
	for (int t = 0; t < N; t++)
	{
		for (int i = 0; i <= t * 2; i++)
		{
			for (int j = 0; i + j <= t * 2; j++)
			{
				if (j != 0) dp2[i + 1][j - 1] += dp[i][j] * j;
				dp2[i][j + 2] += dp[i][j];
				dp2[i][j + 1] += dp[i][j] * ((i + j) * 2);
				dp2[i + 1][j] += dp[i][j];
				dp2[i][j] += dp[i][j] * ((i + j) * (i + j) - j);
			}
		}

		for (int i = 0; i <= (t + 1) * 2; i++)
		{
			for (int j = 0; i + j <= (t + 1) * 2; j++)
			{
				dp[i][j] = dp2[i][j] % mod;
				dp2[i][j] = 0;
			}
		}
	}
	long long ans = 0;
	for (int i = 0; i <= N * 2; i++)
	{
		ans += dp[i][0];
	}
	ans %= mod;
	cout << ans << endl;

}
0