結果

問題 No.93 ペガサス
ユーザー kyuridenamidakyuridenamida
提出日時 2016-02-20 01:29:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 1,232 ms
コンパイル使用メモリ 158,864 KB
実行使用メモリ 19,516 KB
最終ジャッジ日時 2024-09-22 12:24:24
合計ジャッジ時間 2,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,396 KB
testcase_01 AC 6 ms
19,144 KB
testcase_02 AC 6 ms
19,264 KB
testcase_03 AC 6 ms
19,288 KB
testcase_04 AC 19 ms
19,352 KB
testcase_05 AC 12 ms
19,396 KB
testcase_06 AC 9 ms
19,272 KB
testcase_07 AC 50 ms
19,440 KB
testcase_08 AC 26 ms
19,380 KB
testcase_09 AC 82 ms
19,316 KB
testcase_10 AC 6 ms
19,400 KB
testcase_11 AC 7 ms
19,116 KB
testcase_12 AC 70 ms
19,440 KB
testcase_13 AC 23 ms
19,460 KB
testcase_14 AC 13 ms
19,236 KB
testcase_15 AC 61 ms
19,416 KB
testcase_16 AC 15 ms
19,332 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 6 ms
19,232 KB
testcase_19 AC 84 ms
19,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++)
#define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++)
#define all(n) (n).begin(),(n).end()
typedef long long ll;
typedef vector<int> Vi;
typedef vector<Vi> VVi;
typedef pair<long long,long long> Pii;
typedef vector<Pii> VPii;
int mod = 1000000007;
int N;
int dp[1010][1010][2][2];

long long f(int n,int adj,int n2n4,int n1n3){
	if( adj < 0 ) return 0;

	int &dv = dp[n][adj][n2n4][n1n3];
	if( n == N ) return adj == 0 && n2n4 == 0 && n1n3 == 0;
	if( dv != -1 ) return dv;
	int d_n2 = 2 - n2n4;
	long long ans = 0;
	if( n2n4 ) ans += f(n+1,adj     ,n1n3,1);
	if( n1n3 ) ans += f(n+1,adj+n2n4,0,0);
	ans += d_n2 * f(n+1,adj+n2n4,n1n3,1);
	int nopro = n + 1 - adj - n2n4 - n1n3 - d_n2;
	ans += nopro * f(n+1,adj+n2n4,n1n3,0);
	ans += adj * f(n+1,adj-1+n2n4,n1n3,0);


	return dv = ans % mod;
}   
int main(){
	cin >> N;
	if( N == 1 ){
		cout << 1 << endl;
	}else{
		memset(dp,-1,sizeof(dp));
		cout << (f(2,0,0,0) * 2) %mod << endl;
	}
}
0