英文原文
You are climbing a staircase. It takes n
steps to reach the top.
Each time you can either climb 1
or 2
steps. In how many distinct ways can you climb to the top?
Example 1:
Input: n = 2 Output: 2 Explanation: There are two ways to climb to the top. 1. 1 step + 1 step 2. 2 steps
Example 2:
Input: n = 3 Output: 3 Explanation: There are three ways to climb to the top. 1. 1 step + 1 step + 1 step 2. 1 step + 2 steps 3. 2 steps + 1 step
Constraints:
1 <= n <= 45
中文题目
假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢?
注意:给定 n 是一个正整数。
示例 1:
输入: 2 输出: 2 解释: 有两种方法可以爬到楼顶。 1. 1 阶 + 1 阶 2. 2 阶
示例 2:
输入: 3 输出: 3 解释: 有三种方法可以爬到楼顶。 1. 1 阶 + 1 阶 + 1 阶 2. 1 阶 + 2 阶 3. 2 阶 + 1 阶
通过代码
高赞题解
📺 视频题解
方法一:动态规划
思路和算法
我们用 $f(x)$ 表示爬到第 $x$ 级台阶的方案数,考虑最后一步可能跨了一级台阶,也可能跨了两级台阶,所以我们可以列出如下式子:
$$f(x) = f(x - 1) + f(x - 2)$$
它意味着爬到第 $x$ 级台阶的方案数是爬到第 $x - 1$ 级台阶的方案数和爬到第 $x - 2$ 级台阶的方案数的和。很好理解,因为每次只能爬 $1$ 级或 $2$ 级,所以 $f(x)$ 只能从 $f(x - 1)$ 和 $f(x - 2)$ 转移过来,而这里要统计方案总数,我们就需要对这两项的贡献求和。
以上是动态规划的转移方程,下面我们来讨论边界条件。我们是从第 $0$ 级开始爬的,所以从第 $0$ 级爬到第 $0$ 级我们可以看作只有一种方案,即 $f(0) = 1$;从第 $0$ 级到第 $1$ 级也只有一种方案,即爬一级,$f(1) = 1$。这两个作为边界条件就可以继续向后推导出第 $n$ 级的正确结果。我们不妨写几项来验证一下,根据转移方程得到 $f(2) = 2$,$f(3) = 3$,$f(4) = 5$,……,我们把这些情况都枚举出来,发现计算的结果是正确的。
我们不难通过转移方程和边界条件给出一个时间复杂度和空间复杂度都是 $O(n)$ 的实现,但是由于这里的 $f(x)$ 只和 $f(x - 1)$ 与 $f(x - 2)$ 有关,所以我们可以用「滚动数组思想」把空间复杂度优化成 $O(1)$。下面的代码中给出的就是这种实现。
代码
class Solution {
public:
int climbStairs(int n) {
int p = 0, q = 0, r = 1;
for (int i = 1; i <= n; ++i) {
p = q;
q = r;
r = p + q;
}
return r;
}
};
class Solution {
public int climbStairs(int n) {
int p = 0, q = 0, r = 1;
for (int i = 1; i <= n; ++i) {
p = q;
q = r;
r = p + q;
}
return r;
}
}
function climbStairs(n: number): number {
let p: number = 0, q: number = 0, r: number = 1;
for (let i = 1; i <= n; ++i) {
p = q;
q = r;
r = p + q;
}
return r;
};
func climbStairs(n int) int {
p, q, r := 0, 0, 1
for i := 1; i <= n; i++ {
p = q
q = r
r = p + q
}
return r
}
var climbStairs = function(n) {
let p = 0, q = 0, r = 1;
for (let i = 1; i <= n; ++i) {
p = q;
q = r;
r = p + q;
}
return r;
};
int climbStairs(int n) {
int p = 0, q = 0, r = 1;
for (int i = 1; i <= n; ++i) {
p = q;
q = r;
r = p + q;
}
return r;
}
复杂度分析
- 时间复杂度:循环执行 $n$ 次,每次花费常数的时间代价,故渐进时间复杂度为 $O(n)$。
- 空间复杂度:这里只用了常数个变量作为辅助空间,故渐进空间复杂度为 $O(1)$。
方法二:矩阵快速幂
思路
以上的方法适用于 $n$ 比较小的情况,在 $n$ 变大之后,$O(n)$ 的时间复杂度会让这个算法看起来有些捉襟见肘。我们可以用「矩阵快速幂」的方法来优化这个过程。
首先我们可以构建这样一个递推关系:
$$
\left[
\begin{matrix}
1 & 1 \
1 & 0
\end{matrix}
\right]
\left[
\begin{matrix}
f(n)\
f(n - 1)
\end{matrix}
\right] =
\left[
\begin{matrix}
f(n) + f(n - 1)\
f(n)
\end{matrix}
\right] =
\left[
\begin{matrix}
f(n + 1)\
f(n)
\end{matrix}
\right]
$$
因此:
$$
\left[
\begin{matrix}
f(n + 1)\
f(n)
\end{matrix}
\right] =
\left[
\begin{matrix}
1 & 1 \
1 & 0
\end{matrix}
\right] ^n
\left[
\begin{matrix}
f(1)\
f(0)
\end{matrix}
\right]
$$
令:
$$
M = \left[
\begin{matrix}
1 & 1 \
1 & 0
\end{matrix}
\right]
$$
因此我们只要能快速计算矩阵 $M$ 的 $n$ 次幂,就可以得到 $f(n)$ 的值。如果直接求取 $M^n$,时间复杂度是 $O(n)$ 的,我们可以定义矩阵乘法,然后用快速幂算法来加速这里 $M^n$ 的求取。
如何想到使用矩阵快速幂?
- 如果一个问题可与转化为求解一个矩阵的 $n$ 次方的形式,那么可以用快速幂来加速计算
- 如果一个递归式形如 $f(n) = \sum_{i = 1}^{m} a_i f(n - i)$,即齐次线性递推式,我们就可以把数列的递推关系转化为矩阵的递推关系,即构造出一个矩阵的 $n$ 次方乘以一个列向量得到一个列向量,这个列向量中包含我们要求的 $f(n)$。一般情况下,形如 $f(n) = \sum_{i = 1}^{m} a_i f(n - i)$ 可以构造出这样的 $m \times m$ 的矩阵:
$$
\left[
\begin{matrix}
\end{matrix}a_1 & a_2 & a_3 & \cdots & a_m \\ 1 & 0 & 0 & \cdots & 0 \\ 0 & 1 & 0 & \cdots & 0 \\ 0 & 0 & 1 & \cdots & 0 \\ \vdots & \vdots & \vdots & \ddots & \vdots \\ 0 & 0 & 0 & \cdots & 1 \\
\right]
$$ - 那么遇到非齐次线性递推我们是不是就束手无策了呢?其实未必。有些时候我们可以把非齐次线性递推转化为其次线性递推,比如这样一个递推:
$$f(x) = (2x-6)c + f(x - 1) + f(x - 2) + f(x - 3)$$
我们可以做这样的变换:
$$f(x) + xc = [f(x - 1) + (x - 1)c] + [f(x - 2) + (x - 2)c] + [f(x - 3) + (x - 3)c]$$
令 $g(x) = f(x) + xc$,那么我们又得到了一个齐次线性递:
$$g(x) = g(x - 1) + g(x - 2) + g(x - 3)$$
于是就可以使用矩阵快速幂求解了。当然并不是所有非齐次线性都可以化成齐次线性,我们还是要具体问题具体分析。
留两个思考题:
- 你能把 $f(x) = 2f(x - 1) + 3f(x - 2) + 4c$ 化成齐次线性递推吗?欢迎大家在评论区留言。
- 如果一个非齐次线性递推可以转化成齐次线性递推,那么一般方法是什么?这个问题也欢迎大家在评论区总结。
代码
public class Solution {
public int climbStairs(int n) {
int[][] q = {{1, 1}, {1, 0}};
int[][] res = pow(q, n);
return res[0][0];
}
public int[][] pow(int[][] a, int n) {
int[][] ret = {{1, 0}, {0, 1}};
while (n > 0) {
if ((n & 1) == 1) {
ret = multiply(ret, a);
}
n >>= 1;
a = multiply(a, a);
}
return ret;
}
public int[][] multiply(int[][] a, int[][] b) {
int[][] c = new int[2][2];
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
c[i][j] = a[i][0] * b[0][j] + a[i][1] * b[1][j];
}
}
return c;
}
}
class Solution {
public:
vector<vector<long long>> multiply(vector<vector<long long>> &a, vector<vector<long long>> &b) {
vector<vector<long long>> c(2, vector<long long>(2));
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
c[i][j] = a[i][0] * b[0][j] + a[i][1] * b[1][j];
}
}
return c;
}
vector<vector<long long>> matrixPow(vector<vector<long long>> a, int n) {
vector<vector<long long>> ret = {{1, 0}, {0, 1}};
while (n > 0) {
if ((n & 1) == 1) {
ret = multiply(ret, a);
}
n >>= 1;
a = multiply(a, a);
}
return ret;
}
int climbStairs(int n) {
vector<vector<long long>> ret = {{1, 1}, {1, 0}};
vector<vector<long long>> res = matrixPow(ret, n);
return res[0][0];
}
};
var climbStairs = function(n) {
const q = [[1, 1], [1, 0]];
const res = pow(q, n);
return res[0][0];
};
const pow = (a, n) => {
let ret = [[1, 0], [0, 1]];
while (n > 0) {
if ((n & 1) === 1) {
ret = multiply(ret, a);
}
n >>= 1;
a = multiply(a, a);
}
return ret;
}
const multiply = (a, b) => {
const c = new Array(2).fill(0).map(() => new Array(2).fill(0));
for (let i = 0; i < 2; i++) {
for (let j = 0; j < 2; j++) {
c[i][j] = a[i][0] * b[0][j] + a[i][1] * b[1][j];
}
}
return c;
}
type matrix [2][2]int
func mul(a, b matrix) (c matrix) {
for i := 0; i < 2; i++ {
for j := 0; j < 2; j++ {
c[i][j] = a[i][0]*b[0][j] + a[i][1]*b[1][j]
}
}
return c
}
func pow(a matrix, n int) matrix {
res := matrix{{1, 0}, {0, 1}}
for ; n > 0; n >>= 1 {
if n&1 == 1 {
res = mul(res, a)
}
a = mul(a, a)
}
return res
}
func climbStairs(n int) int {
res := pow(matrix{{1, 1}, {1, 0}}, n)
return res[0][0]
}
struct Matrix {
long long mat[2][2];
};
struct Matrix multiply(struct Matrix a, struct Matrix b) {
struct Matrix c;
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
c.mat[i][j] = a.mat[i][0] * b.mat[0][j] + a.mat[i][1] * b.mat[1][j];
}
}
return c;
}
struct Matrix matrixPow(struct Matrix a, int n) {
struct Matrix ret;
ret.mat[0][0] = ret.mat[1][1] = 1;
ret.mat[0][1] = ret.mat[1][0] = 0;
while (n > 0) {
if ((n & 1) == 1) {
ret = multiply(ret, a);
}
n >>= 1;
a = multiply(a, a);
}
return ret;
}
int climbStairs(int n) {
struct Matrix ret;
ret.mat[1][1] = 0;
ret.mat[0][0] = ret.mat[0][1] = ret.mat[1][0] = 1;
struct Matrix res = matrixPow(ret, n);
return res.mat[0][0];
}
复杂度分析
- 时间复杂度:同快速幂,$O(\log n)$。
- 空间复杂度:$O(1)$。
方法三:通项公式
思路
之前的方法我们已经讨论了 $f(n)$ 是齐次线性递推,根据递推方程 $f(n) = f(n - 1) + f(n - 2)$,我们可以写出这样的特征方程:
$$ x^2 = x + 1 $$
求得 $x_1 = \frac{1+\sqrt{5}}{2}$,$x_2 = \frac{1-\sqrt{5}}{2}$,设通解为 $f(n) = c_1 x_1 ^n + c_2 x_2 ^ n$,代入初始条件 $f(1) = 1$,$f(2) = 1$,得 $c_1 = \frac{1}{\sqrt{5}}$,$c_2 = -\frac{1}{\sqrt{5}}$,我们得到了这个递推数列的通项公式:
$$f(n) = \frac{1}{\sqrt{5}}\left[ \left(\frac{1+\sqrt{5}}{2}\right)^{n} - \left(\frac{1-\sqrt{5}}{2}\right)^{n} \right]$$
接着我们就可以通过这个公式直接求第 $n$ 项了。
代码
public class Solution {
public int climbStairs(int n) {
double sqrt5 = Math.sqrt(5);
double fibn = Math.pow((1 + sqrt5) / 2, n + 1) - Math.pow((1 - sqrt5) / 2, n + 1);
return (int) Math.round(fibn / sqrt5);
}
}
class Solution {
public:
int climbStairs(int n) {
double sqrt5 = sqrt(5);
double fibn = pow((1 + sqrt5) / 2, n + 1) - pow((1 - sqrt5) / 2, n + 1);
return (int)round(fibn / sqrt5);
}
};
var climbStairs = function(n) {
const sqrt5 = Math.sqrt(5);
const fibn = Math.pow((1 + sqrt5) / 2, n + 1) - Math.pow((1 - sqrt5) / 2, n + 1);
return Math.round(fibn / sqrt5);
};
func climbStairs(n int) int {
sqrt5 := math.Sqrt(5)
pow1 := math.Pow((1+sqrt5)/2, float64(n+1))
pow2 := math.Pow((1-sqrt5)/2, float64(n+1))
return int(math.Round((pow1 - pow2) / sqrt5))
}
int climbStairs(int n) {
double sqrt5 = sqrt(5);
double fibn = pow((1 + sqrt5) / 2, n + 1) - pow((1 - sqrt5) / 2, n + 1);
return (int) round(fibn / sqrt5);
}
复杂度分析
代码中使用的 $\texttt{pow}$ 函数的时空复杂度与 CPU 支持的指令集相关,这里不深入分析。
总结
这里形成的数列正好是斐波那契数列,答案要求的 $f(n)$ 即是斐波那契数列的第 $n$ 项(下标从 $0$ 开始)。我们来总结一下斐波那契数列第 $n$ 项的求解方法:
- $n$ 比较小的时候,可以直接使用过递归法求解,不做任何记忆化操作,时间复杂度是 $O(2^n)$,存在很多冗余计算。
- 一般情况下,我们使用「记忆化搜索」或者「迭代」的方法,实现这个转移方程,时间复杂度和空间复杂度都可以做到 $O(n)$。
- 为了优化空间复杂度,我们可以不用保存 $f(x - 2)$ 之前的项,我们只用三个变量来维护 $f(x)$、$f(x - 1)$ 和 $f(x - 2)$,你可以理解成是把「滚动数组思想」应用在了动态规划中,也可以理解成是一种递推,这样把空间复杂度优化到了 $O(1)$。
- 随着 $n$ 的不断增大 $O(n)$ 可能已经不能满足我们的需要了,我们可以用「矩阵快速幂」的方法把算法加速到 $O(\log n)$。
- 我们也可以把 $n$ 代入斐波那契数列的通项公式计算结果,但是如果我们用浮点数计算来实现,可能会产生精度误差。
统计信息
通过次数 | 提交次数 | AC比率 |
---|---|---|
630649 | 1185487 | 53.2% |
提交历史
提交时间 | 提交结果 | 执行时间 | 内存消耗 | 语言 |
---|
相似题目
题目 | 难度 |
---|---|
使用最小花费爬楼梯 | 简单 |
斐波那契数 | 简单 |
第 N 个泰波那契数 | 简单 |