当前位置:网站首页>力扣——青蛙跳台阶问题
力扣——青蛙跳台阶问题
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;
}
}
博主本人把这道题题解放到,不是表达这道题很难,用了什么高级的算法来绝决,而是提醒自己,自己有多么多么笨,在第一下看到这道题的时候,我的内心一直想的是什么排列组合,来计算有多少种,而且还出现错误,想想自己,。。。,害,把这题题解放到我的一篇文章中,是提醒自己,别把自己蠢死了,越学越笨。。。说句实话,我确实一直没有想到,最后还是看解析才知道。原来是这样子。
最后到这也就结束,在此谢谢大家能够阅读到最后,非常感谢!!!
边栏推荐
- The custom of the C language types -- -- -- -- -- - structure
- DNS separation resolution and intelligent resolution
- C language recv() function, recvfrom() function, recvmsg() function
- "239 Sliding Window Maximum Value" on the 16th day of LeetCode brushing
- Leetcode 669. 修剪二叉搜索树
- uni-app - 获取汉字拼音首字母(根据中文获取拼音首字母)
- 直播平台开发,Flutter,Drawer侧滑
- [FPGA] Design Ideas - I2C Protocol
- Leetcode 108. 将有序数组转换为二叉搜索树
- MYSQLg高级------聚簇索引和非聚簇索引
猜你喜欢
【人话版】WEB3将至之“权益的游戏”
"3 Longest Substring Without Repeating Characters" on the 17th day of LeetCode brushing
LeetCode刷题第12天二叉树系列之《104 二叉树的最大深度》
leetcode刷题第13天二叉树系列之《98 BST及其验证》
【FPGA】abbreviation
Which one to choose for mobile map development?
【FPGA】设计思路——I2C协议
es-head插件插入查询以及条件查询(五)
LeetCode814 Math Question Day 15 Binary Tree Series Value "814 Binary Tree Pruning"
LeetCode刷题第17天之《3 无重复字符的最长子串》
随机推荐
【FPGA】SDRAM
Is there any way for kingbaseES to not read the system view under sys_catalog by default?
Interchangeable Measurement Techniques - Geometric Errors
Mysql中事件和定时任务
Differences and connections between distributed and clustered
What is Machine Reinforcement Learning?What is the principle?
C language recv() function, recvfrom() function, recvmsg() function
【FPGA】SDRAM
"104 Maximum Depth of Binary Trees" in LeetCode's Day 12 Binary Tree Series
Callable实现多线程
LeetCode刷题第16天之《239滑动窗口最大值》
洛谷P2580 于是他错误的点名开始了
Interchangeability and Measurement Technology—Surface Roughness Selection and Marking Method
机器学习中什么是集成学习?
A simple JVM tuning, learn to write it on your resume
洛谷P4324 扭动的回文串
App Basic Framework Construction丨Log Management - KLog
Basic understanding of MongoDB (2)
LeetCode刷题第11天字符串系列之《 58最后一个单词长度》
.NET自定义中间件