【算法与数据结构】63、LeetCode不同路径 II

文章目录

所有的LeetCode题解索引,可以看这篇文章------【算法和数据结构】LeetCode题解

一、题目

二、解法

  思路分析:参考【算法与数据结构】62、LeetCode不同路径的题目,可以发现本题仅仅是多了障碍物。我们还是用动态规划来做。有障碍物的地方无法到达,因此路径数量为0,只需要将障碍物位置的dp数组记为0,除此之外障碍物后面的位置有可能无法到达(程序当中的两个if break语句)。

  程序如下:

cpp 复制代码
class Solution {
public:
	int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {
		int row = obstacleGrid.size(), col = obstacleGrid[0].size();
		vector<vector<int>> dp(row, vector<int>(col, 0));
		for (int i = 0; i < col; i++) {
			if (obstacleGrid[0][i] == 1) break;
			dp[0][i] = 1;
		}
		for (int j = 0; j < row; j++) {
			if (obstacleGrid[j][0] == 1) break;
			dp[j][0] = 1;
		}
		for (int i = 1; i < row; i++) {
			for (int j = 1; j < col; j++) {
				if (obstacleGrid[i][j] == 0) dp[i][j] = dp[i - 1][j] + dp[i][j - 1];
				else dp[i][j] = 0;
			}
		}
		return dp[row - 1][col - 1];
	}
};

复杂度分析:

  • 时间复杂度: O ( r o w ∗ c o l ) O(row*col) O(row∗col),,row和col分别是地图的行和列。
  • 空间复杂度: O ( r o w ∗ c o l ) O(row*col) O(row∗col)。

三、完整代码

cpp 复制代码
# include <iostream>
# include <vector>
using namespace std;

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

int main() {
	//vector<vector<int>> obstacleGrid = { {0, 0, 0}, {0, 1, 0}, { 0, 0, 0 } };
	vector<vector<int>> obstacleGrid = { {0, 1}, {0, 0} };
	Solution s1;
	int result = s1.uniquePathsWithObstacles(obstacleGrid);
	cout << result << endl;
	system("pause");
	return 0;
}

end

相关推荐
致Great4 小时前
科研人的 AI,不该只回答问题:我用字节TraeWork 跑了一遍真实研究任务
算法
纵有疾風起4 小时前
线性表的定义与基本操作 — 从逻辑结构到 ADT 接口
数据结构·算法·408·线性表·adt
测试_AI_一辰5 小时前
AI Agent 评测最隐蔽的坑-记忆
人工智能·算法·ai·自动化·ai编程
lucas_AI5 小时前
给YOLO检测器插 LoRA,'插对地方'比'插什么'更要命
人工智能·算法
LuminousCPP6 小时前
数据结构-时间与复杂度|时间/空间复杂度 + 两道力扣练习 + 二分查找复盘
c语言·数据结构·经验分享·算法·leetcode
Nil2086 小时前
leetcode 三数之和
数据结构·算法·leetcode
小小龙学IT6 小时前
C++ std::vector 底层实现深度解析:内存布局、扩容策略、移动语义与迭代器失效
开发语言·c++·算法
noipp6 小时前
推荐题目:洛谷 P16689 出征
java·开发语言·数据结构·c++·算法·洛谷·luogu
eBest数字化转型方案6 小时前
从工程视角拆解冰柜资产管理:拍照识别 pipeline、纯净度算法与 IoT 选型踩坑
人工智能·物联网·算法
Interview Aid1126 小时前
Roblox OA 面经|小游戏+编程双修,Coding 两题满分通过
算法