leetcode 62. Unique Paths (dp)

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?

思路分析:这题开始想到用DFS 搜索来做,一般搜索从S到F的路径一边count路径的数量,但是算法时间复杂度太高,用DFS算法时间复杂度为O(2^(m+n)),是指数级复杂度

高中的组合数学的问题,

m*n的棋盘,一共需要走(m-1)+(n-1)步,向右走m-1步,向下走n-1步,这(m-1)+(n-1)步中,只要确定了哪些步向右,即同时确定了哪些步向下走,反之亦然。

  答案即C(m+n-2,m-1)或C(m+n-2,n-1)



方法1: 以下为组合的代码:


 public class Solution {
2     public int uniquePaths(int m, int n) {
3         double res = 1;
4         for (int i = 1; i <= n - 1; i++) 
5             res *= ((double) (m + i - 1) / (double) i);
6         return (int) Math.round(res);
7     }
8 }

说明Note中提示m、n最大为100是有用的,即你计算阶乘时int会溢出的。

方法2:动态规划,定义一个二维数组 A[M][N],数组 A[m][n] ,从 A[0][0] 到 A[m-1][n-1] 有多少条路径

从左上开始依次计算每一行的值,最后返回 A[M-1][N-1]即可,递推方程是:

A[I][J]=A[I-1][J]+A[I][J-1]; A[0][0]=1, 由此第一行的 a[i][0],第一列a[0][i]的 都为1

代码如下:

 public int uniquePaths(int m, int n) {  
        // DP with 2 dimensions array  
        int[][] a = new int[m][n];  
        for (int i = 0; i < m; i++) {  
            a[i][0] = 1;  
        }  
        for (int i = 0; i < n; i++) {  
            a[0][i] = 1;  
        }  
        for (int i = 1; i < m; i++) {  
            for (int j = 1; j < n; j++) {  
                a[i][j] = a[i-1][j] + a[i][j-1];  
            }  
        }  
        return a[m-1][n-1];  
    }  

问题延伸

与 【LeetCode】Unique Paths 解题报告 不同的是,数组中多了障碍,其实只要把障碍地方的解变为 0 就好

public class Solution {  
    public int uniquePathsWithObstacles(int[][] obstacleGrid) {  
        int rows = obstacleGrid.length;  
        if (rows < 1) return 0;  
        int cols = obstacleGrid[0].length;  
        if (cols < 1) return 0;  
          
        if (obstacleGrid[0][0] == 1 || obstacleGrid[rows - 1][cols - 1] == 1) return 0;  
          
        int[] ans = new int[cols];  
        ans[0] = 1;  
        for (int j = 1; j < cols; j++) {  
            if (obstacleGrid[0][j] == 0) {  
                ans[j] = ans[j - 1];  
            } else {  
                ans[j] = 0;  
            }  
        }  
          
        for (int i = 1; i < rows; i++) {  
            if (obstacleGrid[i][0] == 1) {  
                ans[0] = 0;  
            }  
            for (int j = 1; j < cols; j++) {  
                if (obstacleGrid[i][j] == 1) {  
                    ans[j] = 0;  
                } else {  
                    ans[j] += ans[j - 1];  
                }  
            }  
        }  
          
        return ans[cols - 1];  
    }  
}  


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值