zoukankan      html  css  js  c++  java
  • 63. Unique Paths II

    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).

    Now consider if some obstacles are added to the grids. How many unique paths would there be?

    An obstacle and empty space is marked as 1 and 0 respectively in the grid.

    Note: m and n will be at most 100.

    Example 1:

    Input:
    [
      [0,0,0],
      [0,1,0],
      [0,0,0]
    ]
    Output: 2
    Explanation:
    There is one obstacle in the middle of the 3x3 grid above.
    There are two ways to reach the bottom-right corner:
    1. Right -> Right -> Down -> Down
    2. Down -> Down -> Right -> Right
    
    Accepted
    233,101
    Submissions
    690,840
     
     
    比起第I题 多了障碍物的判断,其实很简单就是多加个if而已. 不过本题有些边界条件导致不容易accept
    首先是test case里面竟然有了0,0 位置和 m,n位置等于1 (有障碍物)的情况...我感觉这完全不make sense吧,本来就算出发点和结束点...
    其次是有一个case 值特别大超过32位整数的范围,所以需要把vector的类型换成64位整数类型
    class Solution {
    public:
        int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
            if(obstacleGrid.empty() || obstacleGrid[0].empty())return 0;
            int h=obstacleGrid.size();
            int w=obstacleGrid[0].size();
            vector<vector<uint64_t>> dp(h,vector<uint64_t>(w,0));
            dp[0][0]=1-obstacleGrid[0][0];
            for(int i=0;i<h;++i)
                for(int j=0;j<w;++j)
                {
                    if(0==obstacleGrid[i][j])
                    {
                        if(i) dp[i][j]+=dp[i-1][j];
                        if(j) dp[i][j]+=dp[i][j-1];
                    }
                }
            return dp[h-1][w-1];
        }
    };
  • 相关阅读:
    Java代码实现依赖注入
    Linux shell脚本的字符串截取
    Android教程:wifi热点问题
    Android framework层实现实现wifi无缝切换AP
    http mimetype为multipart/x-mixed-replace报文
    Realtek 8192cu 支持 Android Hotspot 软ap
    http协议详解
    Android 在一个程序中启动另一个程序(包名,或者类名)
    linux定时器
    进程与线程的一个简单解释(转)
  • 原文地址:https://www.cnblogs.com/lychnis/p/11742997.html
Copyright © 2011-2022 走看看