博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Unique Paths
阅读量:5875 次
发布时间:2019-06-19

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

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 3 x 7 grid. How many possible unique paths are there?

Note: m and n will be at most 100.

开一个f[m][n]的数组,f[i][j] = f[i-1][j] + f[i][j-1],空间时间复杂度O(m*n)。用滚动数组空间复杂度可降为O(n)

1 class Solution { 2 public: 3     int uniquePaths(int m, int n) { 4         // Start typing your C/C++ solution below 5         // DO NOT write int main() function 6         vector
> f(m, vector
(n)); 7 8 for(int i = 0; i < n; i++) 9 f[0][i] = 1;10 11 for(int i = 0; i < m; i++)12 f[i][0] = 1;13 14 for(int i = 1; i < m; i++)15 for(int j = 1; j < n; j++)16 f[i][j] = f[i-1][j] + f[i][j-1];17 18 return f[m-1][n-1];19 }20 };

转载地址:http://afzix.baihongyu.com/

你可能感兴趣的文章
福利丨所有AI安全的讲座里,这可能是最实用的一场
查看>>
开发完第一版前端性能监控系统后的总结(无代码)
查看>>
Python多版本情况下四种快速进入交互式命令行的操作技巧
查看>>
MySQL查询优化
查看>>
【Redis源码分析】如何在Redis中查找大key
查看>>
关于链接文件的探讨
查看>>
android app启动过程(转)
查看>>
Linux—源码包安装
查看>>
JDK8中ArrayList的工作原理剖析
查看>>
安装gulp及相关插件
查看>>
如何在Linux用chmod来修改所有子目录中的文件属性?
查看>>
Applet
查看>>
高并发环境下,Redisson实现redis分布式锁
查看>>
乌克兰基辅一世遗修道院起火 现场火光照亮夜空
查看>>
[iOS 10 day by day] Day 2:线程竞态检测工具 Thread Sanitizer
查看>>
Centos/Ubuntu下安装nodejs
查看>>
关于浏览器的cookie
查看>>
Hyper-V 2016 系列教程30 机房温度远程监控方案
查看>>
国内先进的智能移动广告聚合平台-KeyMob聚合
查看>>
我的友情链接
查看>>