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];
        }
    };
  • 相关阅读:
    capwap学习笔记——初识capwap(一)(转)
    capwap学习笔记——capwap的前世今生(转)
    实现一个简单的C++协程库
    c++ 异常处理(1)
    一个浮点数计算的问题
    c++11 中的 move 与 forward
    c++中的左值与右值
    说说尾递归
    boost bind及function的简单实现
    [译] 玩转ptrace (一)
  • 原文地址:https://www.cnblogs.com/zl1991/p/9638001.html
Copyright © 2011-2022 走看看