結果

問題 No.533 Mysterious Stairs
ユーザー ei1333333ei1333333
提出日時 2017-06-23 22:47:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 1,458 ms
コンパイル使用メモリ 158,152 KB
実行使用メモリ 60,764 KB
最終ジャッジ日時 2024-10-04 07:43:46
合計ジャッジ時間 2,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
19,092 KB
testcase_01 AC 7 ms
18,992 KB
testcase_02 AC 7 ms
18,952 KB
testcase_03 AC 6 ms
19,008 KB
testcase_04 AC 6 ms
19,048 KB
testcase_05 AC 6 ms
19,052 KB
testcase_06 AC 7 ms
19,044 KB
testcase_07 AC 5 ms
19,108 KB
testcase_08 AC 7 ms
18,980 KB
testcase_09 AC 7 ms
18,924 KB
testcase_10 AC 6 ms
18,804 KB
testcase_11 AC 6 ms
18,924 KB
testcase_12 AC 7 ms
19,136 KB
testcase_13 AC 6 ms
18,940 KB
testcase_14 AC 6 ms
19,076 KB
testcase_15 AC 7 ms
19,188 KB
testcase_16 AC 6 ms
19,212 KB
testcase_17 AC 6 ms
19,352 KB
testcase_18 AC 6 ms
19,284 KB
testcase_19 AC 6 ms
19,368 KB
testcase_20 AC 14 ms
23,632 KB
testcase_21 AC 15 ms
24,144 KB
testcase_22 AC 31 ms
35,016 KB
testcase_23 AC 73 ms
60,184 KB
testcase_24 AC 72 ms
60,764 KB
testcase_25 AC 14 ms
23,592 KB
testcase_26 AC 65 ms
54,916 KB
testcase_27 AC 22 ms
29,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int mod = 1e9 + 7;
int dp[1000001][4];

int rec(int idx, int pv)
{
  if(idx < 0) return (0);
  if(idx == 0) return (1);
  if(~dp[idx][pv]) return (dp[idx][pv]);
  int ret = 0;
  if(pv != 1) (ret += rec(idx - 1, 1)) %= mod;
  if(pv != 2) (ret += rec(idx - 2, 2)) %= mod;
  if(pv != 3) (ret += rec(idx - 3, 3)) %= mod;
  return (dp[idx][pv] = ret);
}

int main()
{
  int N;
  cin >> N;
  memset(dp, -1, sizeof(dp));
  cout << rec(N, 0) << endl;
}
0