Climbing Stairs – LeetCode 70
Problem
Description
You are climbing a stair case. It takes n steps to reach to the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Note: Given n will be a positive integer.
Example
Example 1:
Input: 2
Output: 2
Explanation: There are two ways to climb to the top.
- 1 step + 1 step
- 2 steps
Example 2:
Input: 3
Output: 3
Explanation: There are three ways to climb to the top.
- 1 step + 1 step + 1 step
- 1 step + 2 steps
- 2 steps + 1 step
Answer
Original
Code
1 | class Solution { |
思路
用递归法模拟步进,妙在左侧走1步,右侧走2步。同时使用memo来缓存先行求值的答案。时间复杂度$O(n)$,空间复杂度$O(n)$。
耗时$3$ ms,排名$98.89\%$
Better
思路
用动态规划,时间复杂度$O(n)$,空间复杂度$O(n)$。更多思路
耗时$0$ ms,排名$71.58\%$
Code
1 | class Solution { |