結果
問題 | No.93 ペガサス |
ユーザー | kyuridenamida |
提出日時 | 2016-02-20 01:29:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,048 bytes |
コンパイル時間 | 1,338 ms |
コンパイル使用メモリ | 157,856 KB |
実行使用メモリ | 19,556 KB |
最終ジャッジ日時 | 2024-09-22 12:24:21 |
合計ジャッジ時間 | 2,532 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
19,360 KB |
testcase_01 | AC | 6 ms
19,324 KB |
testcase_02 | AC | 6 ms
19,352 KB |
testcase_03 | AC | 6 ms
19,348 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 7 ms
19,344 KB |
testcase_19 | WA | - |
ソースコード
#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]; int 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; } }