Hard
,Array
,Tree
,Graph
,Union Find
There is a tree (i.e. a connected, undirected graph with no cycles) consisting of n
nodes numbered from 0
to n - 1
and exactly n - 1
edges.
You are given a 0-indexed integer array vals
of length n
where vals[i]
denotes the value of the ith node. You are also given a 2D integer array edges
where edges[i]
= [
A good path is a simple path that satisfies the following conditions:
The starting node and the ending node have the same value.
All nodes between the starting node and the ending node have values less than or equal to the starting node (i.e. the starting node's value should be the maximum value along the path).
Return the number of distinct good paths.
Note that a path and its reverse are counted as the same path. For example, 0 -> 1
is considered to be the same as 1 -> 0
. A single node is also considered as a valid path.
Example 1:
Input: vals = [1,3,2,1,3], edges = [[0,1],[0,2],[2,3],[2,4]]
Output: 6
Explanation: There are 5 good paths consisting of a single node.
There is 1 additional good path: 1 -> 0 -> 2 -> 4.
(The reverse path 4 -> 2 -> 0 -> 1 is treated as the same as 1 -> 0 -> 2 -> 4.)
Note that 0 -> 2 -> 3 is not a good path because vals[2] > vals[0].
Example 2:
Input: vals = [1,1,2,2,3], edges = [[0,1],[1,2],[2,3],[2,4]]
Output: 7
Explanation: There are 5 good paths consisting of a single node.
There are 2 additional good paths: 0 -> 1 and 2 -> 3.
Example 3:
Input: vals = [1], edges = []
Output: 1
Explanation: The tree consists of only one node, so there is one good path.
Constraints:
n
== vals.length
n
<= 3 * 104vals[i]
<= 105edges.length
== n
- 1edges[i].length
== 2n
edges
represents a valid tree.
class Solution {
public:
class UnionFind{
private:
vector<int> id;
public:
UnionFind(int cnt){
id = vector<int>(cnt);
for(int i = 0; i < cnt; i++)
id[i] = i;
}
int find(int p){
if(p == id[p]) return p;
int root = find(id[p]);
id[p] = root;
return root;
}
void connect(int p, int q){
int i = find(p), j = find(q);
if(i == j) return;
if(i > j)
id[i] = j;
else
id[j] = i;
}
};
int numberOfGoodPaths(vector<int>& vals, vector<vector<int>>& edges) {
int n = vals.size(), goodPaths = 0;
vector<vector<int>> adj(n);
map<int, vector<int>> sameValues;
for(auto& e : edges){
int u = e[0], v = e[1];
if(vals[u] >= vals[v])
adj[u].push_back(v);
else if(vals[v] >= vals[u])
adj[v].push_back(u);
}
for(int i = 0; i < n; i++)
sameValues[vals[i]].push_back(i);
UnionFind uf(n);
for(auto &[value, allNodes] : sameValues){
for(int u : allNodes){
for(int v : adj[u]){
uf.connect(u, v);
}
}
unordered_map<int, int> group;
for(int u : allNodes)
group[uf.find(u)]++;
for(auto &[_, size] : group)
goodPaths += (size * (size-1) / 2);
goodPaths += allNodes.size();
}
return goodPaths;
}
};
XD Jan 15, 2023
Time: n
為node數, m
為node中不同的值
Extra Space: