面试题 08.01. 三步问题DP水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题 08.01. 三步问题DP水题相关的知识,希望对你有一定的参考价值。
https://leetcode-cn.com/problems/three-steps-problem-lcci/
class Solution {
public:
const int mod=1e9+7;
int waysToStep(int n)
{
long long int f[1000001]={0};
f[0]=1,f[1]=1,f[2]=2;
for(int i=3;i<=n;i++) f[i]=(f[i-1]+f[i-2]+f[i-3])%mod;
return f[n];
}
};
以上是关于面试题 08.01. 三步问题DP水题的主要内容,如果未能解决你的问题,请参考以下文章