結果
| 問題 |
No.533 Mysterious Stairs
|
| コンテスト | |
| ユーザー |
IL_msta
|
| 提出日時 | 2017-06-23 22:57:28 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 100 ms / 5,000 ms |
| コード長 | 1,706 bytes |
| コンパイル時間 | 943 ms |
| コンパイル使用メモリ | 102,348 KB |
| 実行使用メモリ | 73,472 KB |
| 最終ジャッジ日時 | 2024-10-04 07:47:27 |
| 合計ジャッジ時間 | 2,078 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 |
ソースコード
#pragma region include
#include <iostream>
#include <iomanip>
#include <stdio.h>
#include <sstream>
#include <algorithm>
#include <cmath>
#include <complex>
#include <string>
#include <cstring>
#include <vector>
#include <tuple>
#include <bitset>
#include <queue>
#include <complex>
#include <set>
#include <map>
#include <stack>
#include <list>
#include <fstream>
#include <random>
//#include <time.h>
#include <ctime>
#pragma endregion //#include
/////////
#define REP(i, x, n) for(int i = x; i < n; ++i)
#define rep(i,n) REP(i,0,n)
/////////
#pragma region typedef
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
#pragma endregion //typedef
////定数
const int INF = (int)1e9;
const LL MOD = (LL)1e9+7;
const LL LINF = (LL)1e18;
const double PI = acos(-1.0);
const double EPS = 1e-9;
/////////
using namespace::std;
void solve(){
int N;
cin >> N;
vector< vector<LL> > dp(N+1+10,vector<LL>(4,0));
//dp[i][pat],iステップ目で直前にpatで来た
dp[1][1] = 1;
dp[2][2] = 1;
dp[3][3] = 1;
for(int i=1;i<N;++i){
for(int step=1;step<=3;++step){
if( dp[i][step] == 0 ) continue;
for(int j=1;j<=3;++j){
if( j == step ) continue;//連続はだめ
dp[i+j][j] += dp[i][step];
if( dp[i+j][j] >= MOD ){
dp[i+j][j] -= MOD;
}
}
}
}
LL ans = 0;
for(int step=1;step<=3;++step){
ans += dp[N][step];
if( ans >= MOD ){
ans -= MOD;
}
}
cout << ans << endl;
}
#pragma region main
signed main(void){
std::cin.tie(0);
std::ios::sync_with_stdio(false);
std::cout << std::fixed;//小数を10進数表示
cout << setprecision(16);//小数点以下の桁数を指定//coutとcerrで別
solve();
}
#pragma endregion //main()
IL_msta