美文网首页
70. Climbing Stairs

70. Climbing Stairs

作者: Al73r | 来源:发表于2017-10-16 15:24 被阅读0次

    题目

    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.

    分析

    使用dp来做。dp[i]表示台阶i处走到顶端所能使用的方法。那么dp[i]可以分为两种情况:

    • 第i阶台阶单独走,则共有dp[i+1]种方法
    • 第i阶台阶和后面的一阶台阶一起走,这就需要后面这一阶台阶必须也是单独走的,所以共有dp[i+2]种情况。

    实现

    class Solution {
    public:
        int climbStairs(int n) {
            if(n==1) return 1;
            int dp[n];
            dp[n-1] = 1;
            dp[n-2] = 2;
            for(int i=n-3; i>=0; i--){
                dp[i] = dp[i+1] + dp[i+2];
            }
            return dp[0];
        }
    };
    

    思考

    相关文章

      网友评论

          本文标题:70. Climbing Stairs

          本文链接:https://www.haomeiwen.com/subject/mbgkuxtx.html