結果

問題 No.533 Mysterious Stairs
ユーザー ukuku09ukuku09
提出日時 2017-06-23 22:49:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 1,069 bytes
コンパイル時間 1,292 ms
コンパイル使用メモリ 158,072 KB
実行使用メモリ 65,772 KB
最終ジャッジ日時 2024-10-04 07:44:41
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
34,596 KB
testcase_01 AC 9 ms
34,668 KB
testcase_02 AC 10 ms
34,556 KB
testcase_03 AC 10 ms
34,512 KB
testcase_04 AC 11 ms
34,552 KB
testcase_05 AC 10 ms
34,664 KB
testcase_06 AC 10 ms
34,576 KB
testcase_07 AC 10 ms
34,636 KB
testcase_08 AC 10 ms
34,488 KB
testcase_09 AC 10 ms
34,460 KB
testcase_10 AC 9 ms
34,564 KB
testcase_11 AC 10 ms
34,484 KB
testcase_12 AC 9 ms
34,556 KB
testcase_13 AC 9 ms
34,576 KB
testcase_14 AC 9 ms
34,468 KB
testcase_15 AC 10 ms
34,708 KB
testcase_16 AC 9 ms
34,652 KB
testcase_17 AC 10 ms
34,776 KB
testcase_18 AC 10 ms
34,872 KB
testcase_19 AC 9 ms
34,856 KB
testcase_20 AC 17 ms
38,028 KB
testcase_21 AC 17 ms
38,404 KB
testcase_22 AC 34 ms
46,572 KB
testcase_23 AC 76 ms
65,408 KB
testcase_24 AC 76 ms
65,772 KB
testcase_25 AC 16 ms
38,064 KB
testcase_26 AC 66 ms
61,652 KB
testcase_27 AC 26 ms
42,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define all(v) (v).begin(), (v).end()
#define resz(v, ...) (v).clear(), (v).resize(__VA_ARGS__)
#define reps(i, m, n) for(int i = (int)(m); i < (int)(n); i++)
#define rep(i, n) reps(i, 0, n)

template<class T1, class T2> void chmin(T1 &a, T2 b){if(a>b)a=b;}
template<class T1, class T2> void chmax(T1 &a, T2 b){if(a<b)a=b;}

typedef pair<int, int> Pi;
typedef tuple<int, int, int> Ti;
typedef vector<int> vint;

const int inf = 1LL << 55;
const int mod = 1e9 + 7;

int N;
int dp[4][1000010];

int solve(int prev, int step) {
  if(step == N) return 1;
  else if(step > N) return 0;
  int &res = dp[prev][step];
  if(~res) return res;
  res = 0;
  if(prev != 1) (res += solve(1, step+1)) %= mod;
  if(prev != 2) (res += solve(2, step+2)) %= mod;
  if(prev != 3) (res += solve(3, step+3)) %= mod;
  return res;
}

signed main()
{
  cin.tie(0);
  ios_base::sync_with_stdio(0);
  cout << fixed << setprecision(12);

  cin >> N;
  memset(dp, -1, sizeof(dp));
  cout << solve(0, 0) << endl;

  return 0;
}
0