結果

問題 No.93 ペガサス
ユーザー pekempeypekempey
提出日時 2015-11-10 21:58:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 1,299 bytes
コンパイル時間 1,471 ms
コンパイル使用メモリ 159,472 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-09-13 14:22:13
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 15 ms
9,728 KB
testcase_05 AC 7 ms
6,144 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 45 ms
23,424 KB
testcase_08 AC 23 ms
13,440 KB
testcase_09 AC 74 ms
34,688 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 66 ms
31,616 KB
testcase_13 AC 21 ms
12,160 KB
testcase_14 AC 9 ms
7,040 KB
testcase_15 AC 58 ms
29,312 KB
testcase_16 AC 11 ms
7,936 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 75 ms
34,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define GET_MACRO(a, b, c, NAME, ...) NAME
#define rep(...) GET_MACRO(__VA_ARGS__, rep3, rep2)(__VA_ARGS__)
#define rep2(i, a) rep3 (i, 0, a)
#define rep3(i, a, b) for (int i = (a); i < (b); i++)
#define repr(...) GET_MACRO(__VA_ARGS__, repr3, repr2)(__VA_ARGS__)
#define repr2(i, a) repr3 (i, 0, a)
#define repr3(i, a, b) for (int i = (b) - 1; i >= (a); i--)
#define chmin(a, b) ((b) < a && (a = (b), true))
#define chmax(a, b) (a < (b) && (a = (b), true))
using namespace std;
typedef long long ll;

const ll mod = 1e9 + 7;
ll dp[1010][1010][2][2]; // pos, bad, (n-3, n-1), (n-2, n)

int main() {
	int n;
	cin >> n;
	dp[0][0][0][0] = 1;
	rep (i, n) rep (j, n + 1) rep (k, 2) rep (l, 2) {
		ll v = dp[i][j][k][l];
		int way = i + 1;
		if (k) {
			// n-3,(n+1),n-1
			(dp[i + 1][j][l][true] += v) %= mod;
			// (n+1),n-1,n-3
			(dp[i + 1][j + k][l][true] += v) %= mod;
			way -= 2;
		} else {
			if (i >= 2) {
				// (n+1),n-1 or n-1,(n+1)
				(dp[i + 1][j + k][l][true] += v * 2) %= mod;
				way -= 2;
			}
		}

		// n-2, (n+1), n
		if (l) {
			(dp[i + 1][j + k][false][false] += v) %= mod;
			way -= 1;
		}

		(dp[i + 1][j - 1 + k][l][false] += v * j % mod) %= mod;
		way -= j;
		(dp[i + 1][j + k][l][false] += v * way % mod) %= mod;
	}
	cout << dp[n][0][0][0] << endl;
}
0