A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).

The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked 'Finish' in the diagram below).

How many possible unique paths are there?


Above is a 7 x 3 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

Example 1:

Input: m = 3, n = 2
Output: 3
Explanation:
From the top-left corner, there are a total of 3 ways to reach the bottom-right corner:
1. Right -> Right -> Down
2. Right -> Down -> Right
3. Down -> Right -> Right

Example 2:

Input: m = 7, n = 3
Output: 28

这道题让求所有不同的路径的个数,一开始还真把博主难住了,因为之前好像没有遇到过这类的问题,所以感觉好像有种无从下手的感觉。在网上找攻略之后才恍然大悟,原来这跟之前那道 Climbing Stairs 很类似,那道题是说可以每次能爬一格或两格,问到达顶部的所有不同爬法的个数。而这道题是每次可以向下走或者向右走,求到达最右下角的所有不同走法的个数。那么跟爬梯子问题一样,需要用动态规划 Dynamic Programming 来解,可以维护一个二维数组 dp,其中 dp[i][j] 表示到当前位置不同的走法的个数,然后可以得到状态转移方程为:  dp[i][j] = dp[i - 1][j] + dp[i][j - 1],这里为了节省空间,使用一维数组 dp,一行一行的刷新也可以,代码如下:

解法一:

class Solution {
public:
int uniquePaths(int m, int n) {
vector<int> dp(n, );
for (int i = ; i < m; ++i) {
for (int j = ; j < n; ++j) {
dp[j] += dp[j - ];
}
}
return dp[n - ];
}
};

这道题其实还有另一种很数学的解法,参见网友 Code Ganker 的博客,实际相当于机器人总共走了 m + n - 2步,其中 m - 1 步向右走,n - 1 步向下走,那么总共不同的方法个数就相当于在步数里面 m - 1 和 n - 1 中较小的那个数的取法,实际上是一道组合数的问题,写出代码如下:

解法二:

class Solution {
public:
int uniquePaths(int m, int n) {
double num = , denom = ;
int small = m > n ? n : m;
for (int i = ; i <= small - ; ++i) {
num *= m + n - - i;
denom *= i;
}
return (int)(num / denom);
}
};

Github 同步地址:

https://github.com/grandyang/leetcode/issues/62

类似题目:

Unique Paths II

Minimum Path Sum

Dungeon Game

参考资料:

https://leetcode.com/problems/unique-paths/

https://leetcode.com/problems/unique-paths/discuss/22981/My-AC-solution-using-formula

https://leetcode.com/problems/unique-paths/discuss/22954/0ms-5-lines-DP-Solution-in-C%2B%2B-with-Explanations

LeetCode All in One 题目讲解汇总(持续更新中...)

最新文章

  1. 利用sharding-jdbc分库分表
  2. CentOS 下 MySQL DateBasic 抢救
  3. Introduction to the Service Provider Interfaces--官方文档
  4. MS SQL巡检系列&mdash;&mdash;检查数据库上一次DBCC CHECKDB的时间
  5. iOS_线程和进程的区别与联系
  6. UVALive 5061 Lightning Energy Report --LCA
  7. 在浏览器中输入URL后执行的全部过程的个人总结
  8. excel列递增方法技巧
  9. spring框架七大模块
  10. request.setAttribute()用法
  11. UESTC_王之盛宴 2015 UESTC Training for Graph Theory&lt;Problem K&gt;
  12. 链接分析算法之:HITS算法
  13. Eclipse用法和技巧二十二:快速调整字体大小
  14. xcode实用快捷键
  15. 深入理解 Promise
  16. c语言的一些易错知识积累
  17. celery使用rabbitmq报错[Errno 104] Connection reset by peer.
  18. XBee&#174; ZigBee 模块使用方法
  19. Selenium-xapth定位
  20. python进程与线程介绍

热门文章

  1. @Resource和@Autowire用谁?
  2. SpringBoot2版本Caused by: java.sql.SQLSyntaxErrorException: Table &#39;dinner.hibernate_sequenc
  3. .NET Core on K8S快速入门课程--学习笔记
  4. C#进阶之路(八)集合的应用
  5. mssql 导出作业,导出表,导出存储过程等
  6. Linux中用postfix搭建邮件服务器实战详解
  7. JavaScript调用百度地图
  8. Arduino+esp8266-01+舵机 制作基于局域网的遥控门禁
  9. maven 学习---使用Maven运行单元测试
  10. 给普通用户赋予sudo权限后报错,提示/etc/sudoers文件权限拒绝