【算法与数据结构】417、LeetCode太平洋大西洋水流问题

文章目录

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

一、题目



二、解法

思路分析:题目要求雨水既能流向太平洋也能流向大西洋的网格。雨水流向取决于网格的高度。一个比较直接的方式是对每个网格做深度优先搜索,去判断该网格点是否连接太平洋和大西洋,连接的条件就是小于或者等于网格的高度。这样的方法对于当个网格点的复杂度是 O ( m × n ) O(m \times n) O(m×n),一共有 O ( m × n ) O(m \times n) O(m×n)个网格,总的复杂度是 O ( m 2 × n 2 ) O(m^2 \times n^2) O(m2×n2)。这种方法的缺点是没有利用点与点之间的关系,单个网格点的遍历不能再下一次遍历中利用。

为了能充分利用点与点之间的关系,逆向思维一下,顺着雨水流向逆向遍历。从太平洋边上的节点出发,标记所有能流入太平洋的网格点;同样的方法,从大西洋边上的节点出发,标记所有能流入大西洋的的网格点。然后找到同时有太平洋和大西洋标记的节点输出。

程序如下:

cpp 复制代码
// 417、太平洋大西洋水流问题
class Solution {
private:
	vector<vector<int>> result;
	vector<vector<int>> delta_x_y = { {0, -1}, {0, 1}, {-1, 0}, {1, 0} };	// 上下左右四个方向的偏移量
 	void dfs(const vector<vector<int>>& grid, vector<vector<bool>>& visited, int x, int y) {	// 1、递归输入参数
		visited[x][y] = true;
		// 3、单层递归逻辑
		for (int i = 0; i < 4; i++) {
			int nextx = x + delta_x_y[i][0];
			int nexty = y + delta_x_y[i][1];
			//  2、终止条件  逆流而上式的遍历 grid[nextx][nexty] < grid[x][y]
			if (nextx < 0 || nextx >= grid.size() || nexty < 0 || nexty >= grid[0].size() || visited[nextx][nexty]  || grid[nextx][nexty] < grid[x][y]) continue;	
			dfs(grid, visited, nextx, nexty);
		}
	}
public:
	vector<vector<int>> pacificAtlantic(vector<vector<int>>& heights) {
		vector<vector<bool>> pacific = vector<vector<bool>>(heights.size(), vector<bool>(heights[0].size(), false));	// 遍历过的坐标
		vector<vector<bool>> Atlanti = vector<vector<bool>>(heights.size(), vector<bool>(heights[0].size(), false));
		for (int i = 0; i < heights[0].size(); i++) {		// 遍历边界行
			dfs(heights, pacific, 0, i);				// 第一行
			dfs(heights, Atlanti, heights.size() - 1, i);	// 最后一行						
		}
		for (int j = 0; j < heights.size(); j++) {	// 遍历大西洋的网格点
			dfs(heights, pacific, j, 0);				// 第一列
			dfs(heights, Atlanti, j, heights[0].size() - 1);	// 最后一列			
		}

		for (int i = 0; i < heights.size(); i++) {	// 遍历行 
			for (int j = 0; j < heights[0].size(); j++) {	// 遍历列
				if (pacific[i][j] && Atlanti[i][j]) result.push_back({i, j});	// 深度优先搜索,将连接的陆地都标记上true
			}
		}
 		return result;
	}
}; 

复杂度分析:

  • 时间复杂度: O ( m × n ) O(m \times n) O(m×n),其中 m m m和 n n n分别是网格数组的行数和列数。深度优先搜索的时间复杂度为 O ( m × n ) O(m \times n) O(m×n),主程序当中使用了四个for循环,前两个用来遍历边界,后两个用来遍历太平洋和大西洋的标记数组。前两个for循环的时间复杂度不是 O ( m × ( m × n ) + n × ( m × n ) ) = O ( ( m + n ) × ( m × n ) ) O(m \times (m \times n)+n \times (m \times n)) = O((m+n) \times (m \times n)) O(m×(m×n)+n×(m×n))=O((m+n)×(m×n))。因为我们引入了标记数组,标记过的网格不会多次遍历,实际上的复杂度是两个标记数组遍历的复杂度 O ( 2 × ( m × n ) ) O(2 \times (m \times n)) O(2×(m×n)),后两个循环的复杂度也是 O ( m × n ) O(m \times n) O(m×n)。因此总的时间复杂度为 O ( 3 × m × n ) = O ( m × n ) O(3 \times m \times n) = O(m \times n) O(3×m×n)=O(m×n)。
  • 空间复杂度: O ( m × n ) O(m \times n) O(m×n)。

三、完整代码

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

// 417、太平洋大西洋水流问题
class Solution {
private:
	vector<vector<int>> result;
	vector<vector<int>> delta_x_y = { {0, -1}, {0, 1}, {-1, 0}, {1, 0} };	// 上下左右四个方向的偏移量
 	void dfs(const vector<vector<int>>& grid, vector<vector<bool>>& visited, int x, int y) {	// 1、递归输入参数
		visited[x][y] = true;
		// 3、单层递归逻辑
		for (int i = 0; i < 4; i++) {
			int nextx = x + delta_x_y[i][0];
			int nexty = y + delta_x_y[i][1];
			//  2、终止条件  逆流而上式的遍历 grid[nextx][nexty] < grid[x][y]
			if (nextx < 0 || nextx >= grid.size() || nexty < 0 || nexty >= grid[0].size() || visited[nextx][nexty]  || grid[nextx][nexty] < grid[x][y]) continue;	
			dfs(grid, visited, nextx, nexty);
		}
	}
public:
	vector<vector<int>> pacificAtlantic(vector<vector<int>>& heights) {
		vector<vector<bool>> pacific = vector<vector<bool>>(heights.size(), vector<bool>(heights[0].size(), false));	// 遍历过的坐标
		vector<vector<bool>> Atlanti = vector<vector<bool>>(heights.size(), vector<bool>(heights[0].size(), false));
		for (int i = 0; i < heights[0].size(); i++) {		// 遍历边界行
			dfs(heights, pacific, 0, i);				// 第一行
			dfs(heights, Atlanti, heights.size() - 1, i);	// 最后一行						
		}
		for (int j = 0; j < heights.size(); j++) {	// 遍历大西洋的网格点
			dfs(heights, pacific, j, 0);				// 第一列
			dfs(heights, Atlanti, j, heights[0].size() - 1);	// 最后一列			
		}

		for (int i = 0; i < heights.size(); i++) {	// 遍历行 
			for (int j = 0; j < heights[0].size(); j++) {	// 遍历列
				if (pacific[i][j] && Atlanti[i][j]) result.push_back({i, j});	// 深度优先搜索,将连接的陆地都标记上true
			}
		}
 		return result;
	}
}; 

void my_print(vector<vector<int>> result, string message) {
	cout << message << endl;
	for (vector<vector<int>>::iterator it = result.begin(); it != result.end(); it++) {
		for (vector<int>::iterator jt = (*it).begin(); jt != (*it).end(); jt++) {
			cout << *jt << " ";
		}
		cout << endl;
	}
}

int main() {
	//vector<vector<int>> heights = { { 1, 2, 2, 3, 5},{3, 2, 3, 4, 4},{2, 4, 5, 3, 1},{6, 7, 1, 4, 5},{5, 1, 1, 2, 4} };
	//vector<vector<int>> heights = { {1} };
	vector<vector<int>> heights = { {3,3,3,3,3,3}, {3,0,3,3,0,3 }, {3,3,3,3,3,3} };
	Solution s1;
	vector<vector<int>> result = s1.pacificAtlantic(heights);
	my_print(result, "结果:");

	system("pause");
	return 0;
}

end

相关推荐
shymoy19 分钟前
Radix Sorts
数据结构·算法·排序算法
风影小子28 分钟前
注册登录学生管理系统小项目
算法
黑龙江亿林等保30 分钟前
深入探索哈尔滨二级等保下的负载均衡SLB及其核心算法
运维·算法·负载均衡
lucy1530275107933 分钟前
【青牛科技】GC5931:工业风扇驱动芯片的卓越替代者
人工智能·科技·单片机·嵌入式硬件·算法·机器学习
杜杜的man1 小时前
【go从零单排】迭代器(Iterators)
开发语言·算法·golang
小沈熬夜秃头中୧⍤⃝1 小时前
【贪心算法】No.1---贪心算法(1)
算法·贪心算法
木向2 小时前
leetcode92:反转链表||
数据结构·c++·算法·leetcode·链表
阿阿越2 小时前
算法每日练 -- 双指针篇(持续更新中)
数据结构·c++·算法
skaiuijing2 小时前
Sparrow系列拓展篇:对调度层进行抽象并引入IPC机制信号量
c语言·算法·操作系统·调度算法·操作系统内核
Star Patrick2 小时前
算法训练(leetcode)二刷第十九天 | *39. 组合总和、*40. 组合总和 II、*131. 分割回文串
python·算法·leetcode