結果

問題 No.533 Mysterious Stairs
ユーザー WA_TLEWA_TLE
提出日時 2017-06-23 22:29:34
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 910 bytes
コンパイル時間 1,081 ms
コンパイル使用メモリ 108,972 KB
最終ジャッジ日時 2025-01-05 00:46:38
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<string>
#include<deque>
#include<queue>
#include<vector>
#include<algorithm>
#include<iostream>
#include<set>
#include<cmath>
#include<tuple>
#include<map>
#include<functional>
using namespace std;
typedef long long int llint;
typedef bool izryt;
#define mp make_pair
#define mt make_tuple
#define pub push_back
#define puf push_front
#define pob pop_back
#define pof pop_front
#define fir first
#define sec second
#define res resize
#define ins insert
#define era erase
const int big=1e9;
const int mod=1e9 + 7;
int main(void){
	int i,j,n,m;cin>>n;
	vector<llint>dp[3];
	dp[0].res(n+10);
	dp[1].res(n+10);
	dp[2].res(n+10);
	dp[0][1]=1;
	dp[1][2]=1;
	dp[2][3]=1;
	for(i=0;i<n;i++){
		dp[0][i+1]+=dp[1][i]+dp[2][i];
		dp[1][i+2]+=dp[0][i]+dp[2][i];
		dp[2][i+3]+=dp[0][i]+dp[1][i];
		dp[0][i+1]%=mod;
		dp[1][i+2]%=mod;
		dp[2][i+3]%=mod;
	}
	cout<<(dp[0][n]+dp[1][n]+dp[2][n])%mod<<endl;
	return 0;
}
0