-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path2492.cpp
50 lines (50 loc) · 1.31 KB
/
2492.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
class DisjointSet {
private:
vector<int> parent;
vector<int> rank;
public:
DisjointSet(int size) {
parent.resize(size, 0);
for (int i = 0; i < size; ++i) parent[i] = i;
rank.resize(size, 0);
}
int find(int x) {
if (parent[x] != x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
void join(int x, int y) {
int pX = find(x);
int pY = find(y);
if (pX == pY) return;
if (rank[pX] > rank[pY]) {
parent[pY] = pX;
}
else if (rank[pX] < rank[pY]) {
parent[pX] = pY;
}
else {
parent[pY] = pX;
rank[pX]++;
}
}
};
class Solution {
public:
int minScore(int n, vector<vector<int>>& roads) {
// the min road in the conntect component
DisjointSet* disjointSet = new DisjointSet(n);
for (auto& road : roads) {
disjointSet->join(road[0] - 1, road[1] - 1);
}
int targetParent = disjointSet->find(n - 1);
int minRoad = INT_MAX;
for (auto& road : roads) {
if (disjointSet->find(road[0] - 1) == targetParent && disjointSet->find(road[1] - 1) == targetParent) {
minRoad = min(minRoad, road[2]);
}
}
return minRoad;
}
};