結果
問題 |
No.533 Mysterious Stairs
|
ユーザー |
|
提出日時 | 2017-06-27 20:11:46 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 51 ms / 5,000 ms |
コード長 | 667 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 73,904 KB |
実行使用メモリ | 34,560 KB |
最終ジャッジ日時 | 2024-10-04 13:34:52 |
合計ジャッジ時間 | 1,766 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include<cstdio> #include <iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #define mod 1000000007; using namespace std; typedef long long ll; typedef pair<ll, ll> Pr; ll dp[1000010][4]; int main() { int N; cin >> N; dp[0][0] = 1; for (int i = 0; i < N; i++) { for (int j = 0; j < 4; j++) { for(int k=1; k<4; k++){ if (k != j) { dp[i + k][k] += dp[i][j]; dp[i + k][k] %= mod; } } } } ll ans = 0; for (int i = 0; i < 4; i++) { ans += dp[N][i]; ans %= mod; } cout << ans << endl; return 0; }