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];
        }
    };
  • 相关阅读:
    5.7填数字游戏求解
    5.6判断回文数字
    5.5百钱买百鸡问题
    5.4三色球问题
    5.3哥德巴赫猜想的近似证明
    5.2求两个数的最大公约数和最小公倍数
    5.1舍罕王的失算
    4.19递归反向输出字符串
    Elasticsearch 安装
    linux 安装nginx步骤
  • 原文地址:https://www.cnblogs.com/zl1991/p/9638001.html
Copyright © 2011-2022 走看看