結果
問題 | No.93 ペガサス |
ユーザー | kroton |
提出日時 | 2014-10-27 13:01:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,494 bytes |
コンパイル時間 | 471 ms |
コンパイル使用メモリ | 57,148 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 17:45:09 |
合計ジャッジ時間 | 1,369 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <iostream> #include <cstring> using namespace std; typedef long long ll; const ll MOD = 1e9 + 7; ll dp[2][1050][2]; ll solve(int n){ int curr = 0, next = 1; memset(dp[curr], 0, sizeof(dp[curr])); int segs = 2; dp[curr][0][0] = 1; for(int i=2;i<=n;i++){ memset(dp[next], 0, sizeof(dp[next])); for(int b=0;b<=segs;b++){ int s = segs - b; for(int p=0;p<=1;p++){ if(p > b)continue; int nb = b - p; int ns = segs - 2 - nb; if(ns < 0 || ns > s)continue; dp[next][b+1][1] += dp[curr][b][p]; dp[next][b+1][1] %= MOD; dp[next][b+1-p][1] += dp[curr][b][p]; dp[next][b+1-p][1] %= MOD; if(nb > 0){ dp[next][b-1][0] += (dp[curr][b][p] * nb) % MOD; dp[next][b-1][0] %= MOD; } if(ns > 0){ dp[next][b][0] += (dp[curr][b][p] * ns) % MOD; dp[next][b][0] %= MOD; } } } swap(curr, next); ++segs; } return dp[curr][0][0]; } int main(){ int N; cin >> N; cout << solve(N) << endl; return 0; }