博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态规划系列 Leetcode 70. Climbing Stairs
阅读量:6528 次
发布时间:2019-06-24

本文共 1053 字,大约阅读时间需要 3 分钟。

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 1:

Input: 2Output:  2Explanation:  There are two ways to climb to the top.1. 1 step + 1 step2. 2 steps

 

Example 2:

Input: 3Output:  3Explanation:  There are three ways to climb to the top.1. 1 step + 1 step + 1 step2. 1 step + 2 steps3. 2 steps + 1 step 这个一道基本动态规划题目,做动态规划题目有四个步骤: 1)确定原问题和子问题 2)确定状态 3)确认边界状态的值 4)确定状态转移方程
1 #include 
2 3 #include
4 class Solution { 5 public: 6 int climbStairs(int n) { 7 std::vector
dp(n + 3, 0); 8 dp[1] = 1; 9 dp[2] = 2;10 for (int i = 3; i <= n; i++){11 dp[i] = dp[i-1] + dp[i-2];12 }13 return dp[n];14 }15 };16 17 int main(){18 Solution solve;19 printf("%d\n", solve.climbStairs(3)); 20 return 0;21 }

 

转载于:https://www.cnblogs.com/Hwangzhiyoung/p/8733667.html

你可能感兴趣的文章
js生成制定范围的随机整数
查看>>
Android网络编程1
查看>>
Redis+Sentinel安装与配置
查看>>
虚拟机家园VirtualBox虚拟机图文安装教程
查看>>
我的友情链接
查看>>
oracle跟踪常用内部事件号
查看>>
【12c-安装篇】课程目标与课程内容
查看>>
wordpress 文章阅读统计插件之WP-PostViews
查看>>
决定开发者胜败的三要素
查看>>
lamp环境搭建与phpwind,wordprss实现
查看>>
DRBD+Corosync+Pacemaker+MySQL(下)
查看>>
iOS状态栏、导航栏的设置
查看>>
Linux常用命令总结之(四)pwd
查看>>
DBA整体职责方向
查看>>
robotframework环境搭建
查看>>
Docker常用命令和操作
查看>>
我的友情链接
查看>>
【分享】Android二次打包植入广告
查看>>
SQL Server 存储过程
查看>>
6.Python入门到精通
查看>>