当前位置:网站首页>力扣——青蛙跳台阶问题
力扣——青蛙跳台阶问题
2022-08-11 04:13:00 【cbys-1357】
题目:
一只青蛙一次可以跳上1级台阶,也可以跳上2级台阶。求该青蛙跳上一个 n 级的台阶总共有多少种跳法。
答案需要取模 1e9+7(1000000007),如计算初始结果为:1000000008,请返回 1。
示例 1:
输入:n = 2
输出:2示例 2:
输入:n = 7
输出:21示例 3:
输入:n = 0
输出:1设跳上 n 级台阶有 f(n) 种跳法。在所有跳法中,青蛙的最后一步只有两种情况: 跳上 1 级或 2级台阶。
当为 1 级台阶: 剩 n−1 个台阶,此情况共有 f(n−1) 种跳法;
当为 2 级台阶: 剩 n−2 个台阶,此情况共有 f(n−2) 种跳法。
f(n) 为以上两种情况之和,即 f(n)=f(n−1)+f(n−2) ,以上递推性质为斐波那契数列。本题可转化为 求斐波那契数列第 n 项的值 ,与 斐波那契数列 等价,唯一的不同在于起始数字不同。
青蛙跳台阶问题: f(0)=1 , f(1)=1 , f(2)=2
斐波那契数列问题: f(0)=0 , f(1)=1 , f(2)=1 class Solution {
public int numWays(int n) {
int a = 1, b = 1, sum;
for(int i = 0; i < n; i++){
sum = (a + b) % 1000000007;
a = b;
b = sum;
}
return a;
}
}
博主本人把这道题题解放到,不是表达这道题很难,用了什么高级的算法来绝决,而是提醒自己,自己有多么多么笨,在第一下看到这道题的时候,我的内心一直想的是什么排列组合,来计算有多少种,而且还出现错误,想想自己,。。。,害,把这题题解放到我的一篇文章中,是提醒自己,别把自己蠢死了,越学越笨。。。说句实话,我确实一直没有想到,最后还是看解析才知道。原来是这样子。
最后到这也就结束,在此谢谢大家能够阅读到最后,非常感谢!!!
边栏推荐
- typedef defines the structure array type
- What is ensemble learning in machine learning?
- 优先级队列
- The development of the massage chair control panel makes the massage chair simple and intelligent
- 机器学习怎么学?机器学习流程
- [Likou] 22. Bracket generation
- 解决多线程调用sql存储过程问题
- "104 Maximum Depth of Binary Trees" in LeetCode's Day 12 Binary Tree Series
- 洛谷P2370 yyy2015c01 的 U 盘
- 直播平台开发,Flutter,Drawer侧滑
猜你喜欢
随机推荐
洛谷P6586 蒟蒻火锅的盛宴
es-head plugin insert query and conditional query (5)
LeetCode刷题第10天字符串系列之《125回文串验证》
LeetCode刷题第11天字符串系列之《 58最后一个单词长度》
华南师范宋宇老师课堂对话论文翻译
Use jackson to parse json data in detail
What is Machine Reinforcement Learning?What is the principle?
App Basic Framework Construction丨Log Management - KLog
"239 Sliding Window Maximum Value" on the 16th day of LeetCode brushing
【FPGA】abbreviation
Echart地图的省级,以及所有地市级下载与使用
uni-app - 获取汉字拼音首字母(根据中文获取拼音首字母)
80端口和443端口是什么?有什么区别?
洛谷P4032 火锅盛宴
rub the heat - do not open
Basic understanding of MongoDB (2)
.NET service registration
How to rebuild after pathman_config and pathman_config_params are deleted?
js uses the string as the js execution code
What is ensemble learning in machine learning?







