[Leetcode]Unique Paths

独特路径算法与障碍物考虑
本文探讨了机器人在网格中寻找独特路径的问题,并详细解释了两种不同的算法:基于组合数学的方法和动态规划方法。此外,文章还介绍了如何在存在障碍物的情况下计算独特路径的数量,通过动态规划进行路径优化。

Unique Paths

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.

 

一种使用数学方法,简单排列组合。注意可能超过int,使用double,最后强制类型转换。

class Solution {
public:
    int uniquePaths(int m, int n) {
        if(m <=0 || n <= 0) return 0;
        long long res = 1;
        for(int i = n; i < m+n-1 ; i++){
            res = res * i / (i- n + 1);
        }
        return (int)res;
    }
};

  

另外一种dp。

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

 

Unique Paths II

Total Accepted: 48928 Total Submissions: 173558 Difficulty: Medium

 

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 as 1 and 0 respectively 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 is 2.

Note: m and n will be at most 100.

 

dp做了一些改变。

class Solution {
public:
    int uniquePathsWithObstacles(vector<vector<int>>& g) {
        int m = g.size();
        int n =g[0].size();
        vector<vector<int> > path(m,vector<int>(n));
        for(int i = 0; i < n; ++i) {
            if(g[0][i] == 1) {
                for(;i<n;++i) {
                    path[0][i] = 0;
                }
                break;
            }
            path[0][i] = 1;
        }
        for (int j = 0;j <m;++j) {
            if(g[j][0] == 1) {
                for(;j<m;++j) {
                    path[j][0] = 0;
                }
                break;
            }
            path[j][0] = 1;
        }
        for(int i =1;i<m;++i) {
            for(int j =1;j<n;++j) {
                if(g[i][j] == 1) 
                    path[i][j] = 0;
                else {
                    path[i][j] = path[i-1][j] + path[i][j-1];
                }
            }
        }
        return path[m-1][n-1];
        
    }
};

  话说一遍ac的感觉真好啊~

转载于:https://www.cnblogs.com/shenbingyu/p/4909846.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值