博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
62. Unique Paths (JAVA)
阅读量:4965 次
发布时间:2019-06-12

本文共 1056 字,大约阅读时间需要 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 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 = 2Output: 3Explanation:From the top-left corner, there are a total of 3 ways to reach the bottom-right corner:1. Right -> Right -> Down2. Right -> Down -> Right3. Down -> Right -> Right

Example 2:

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

动态规划,当前值和左边格子与上边格子的状态有关;状态仅与当前行和上一行有关,并且由于是从上往下、从左往右遍历的,可以只使用一维数组存储。

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

 

转载于:https://www.cnblogs.com/qionglouyuyu/p/10910991.html

你可能感兴趣的文章
poj1040 Transportation(DFS)
查看>>
ubuntu16.04编译安装mysql5.7
查看>>
JavaScript面向对象之对象的声明、遍历和存储
查看>>
H5离线缓存
查看>>
python&数据分析&数据挖掘--参考资料推荐书籍
查看>>
NODE.JS学习的常见误区及四大名著
查看>>
求第区间第k大数 TLE归并树
查看>>
改Chrome的User Agent,移动版网络
查看>>
命令行java -classpath 的使用
查看>>
springboot+mybatis 用redis作二级缓存
查看>>
AVR 定时器快速PWM模式使用
查看>>
状态压缩 HDU4539 郑厂长系列故事——排兵布阵
查看>>
eclipse连接远程hadoop集群开发时0700问题解决方案
查看>>
《Head First Python》学习笔记 01
查看>>
innodb事务隔离级别
查看>>
python 编码问题随笔
查看>>
WSGI是一种编程接口,而uwsgi是一种传输协议
查看>>
爱可生技术文档
查看>>
vuex 学习 01
查看>>
剧烈变化的移动互联网O2O
查看>>