[LeetCode] Find if Path Exists in Graph

1971. Find if Path Exists in Graph

There is a bi-directional graph with n vertices, where each vertex is labeled from 0 to n - 1 (inclusive). The edges in the graph are represented as a 2D integer array edges, where each edges[i] = [ui, vi] denotes a bi-directional edge between vertex ui and vertex vi. Every vertex pair is connected by at most one edge, and no vertex has an edge to itself.

You want to determine if there is a valid path that exists from vertex source to vertex destination.

Given edges and the integers n, source, and destination, return true if there is a valid path from source to destination, or false otherwise.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
int uf[202020];
int find(int u) {
return uf[u] == u ? u : uf[u] = find(uf[u]);
}
void uni(int u, int v) {
int pu = find(u), pv = find(v);
uf[pu] = uf[pv] = min(pu, pv);
}
public:
bool validPath(int n, vector<vector<int>>& edges, int source, int destination) {
iota(begin(uf), end(uf), 0);
for(auto e : edges) {
uni(e[0], e[1]);
}
return find(source) == find(destination);
}
};
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/12/19/PS/LeetCode/find-if-path-exists-in-graph/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.