zoukankan      html  css  js  c++  java
  • unique-paths I &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).

    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.

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

    Follow up for "Unique Paths":

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

    An obstacle and empty space is marked as1and0respectively in the grid.

    For example,

    There is one obstacle in the middle of a 3x3 grid as illustrated below.

    [
      [0,0,0],
      [0,1,0],
      [0,0,0]
    ]
    

    The total number of unique paths is2.

    Note: m and n will be at most 100.

    有障碍物的地方不能走,循环内加判断

    class Solution {
    public:
        int uniquePathsWithObstacles(vector<vector<int> > &obstacleGrid) {
            int m=obstacleGrid.size();
            int n=obstacleGrid[0].size();
            int path[m][n];
            for(int i=0;i<m;++i)
            {
                for(int j=0;j<n;++j)
                {
                    if(obstacleGrid[i][j]==1)
                    {
                        path[i][j]=0;
                        continue;
                    }
                    if(i==0&&j==0){
                        path[i][j]=1;
                        continue;
                    }
                    if(i==0)
                    {
                        path[i][j]=path[i][j-1];
                    } else if(j==0){
                        path[i][j]=path[i-1][j];
                    }
                    else{
                        path[i][j]=path[i-1][j]+path[i][j-1];
                    }
                }
            }
            return path[m-1][n-1];
        }
    };
  • 相关阅读:
    intellij idea for mac 2018 破解版
    Mac下Supervisor进程监控管理工具的安装与配置
    Mysql千万级大表优化策略
    php7实现基于openssl的加密解密方法
    openresty--centos7下开发环境安装
    webstorm下搭建编译less环境 以及设置压缩css
    七牛图片上传
    聊一聊PHP的依赖注入(DI) 和 控制反转(IoC)
    joomla! 3.X 开发系列教程
    JSON反序列化接口的问题
  • 原文地址:https://www.cnblogs.com/zl1991/p/9638001.html
Copyright © 2011-2022 走看看