当前位置:网站首页>力扣——青蛙跳台阶问题
力扣——青蛙跳台阶问题
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
Power Cabinet Data Monitoring RTU
机器学习是什么?详解机器学习概念
Day20 FPGA 】 【 - block the I2C read and write EEPROM
【FPGA】SDRAM
[FPGA] day19- binary to decimal (BCD code)
Rotary array problem: how to realize the array "overall reverse, internal orderly"?"Three-step conversion method" wonderful array
WPF DataGrid 使用数据模板(2)
【FPGA】day21-移动平均滤波器
【FPGA】day18-ds18b20实现温度采集
随机推荐
Pinduoduo store business license related issues
js uses the string as the js execution code
Clang Code Model: Error: The clangbackend executable “X:/clangbackend.exe“ could not be started
优先级队列
uni-app - 获取汉字拼音首字母(根据中文获取拼音首字母)
Binary tree related code questions [more complete] C language
Mysql中事件和定时任务
洛谷P4560 Wall 砖墙
Description of ESB product development steps under cloud platform
直播平台开发,Flutter,Drawer侧滑
Interchangeability and Measurement Techniques - Tolerance Principles and Selection Methods
Redis:解决分布式高并发修改同一个Key的问题
What are port 80 and port 443?What's the difference?
【组成原理 九 CPU】
【FPGA】day22-SPI协议回环
MYSQLg advanced ------ clustered and non-clustered indexes
leetcode刷题第13天二叉树系列之《98 BST及其验证》
一文读懂 高性能可预期数据中心网络
[FPGA] Design Ideas - I2C Protocol
Interchangeability and Measurement Technology—Surface Roughness Selection and Marking Method