Alice and Bob have an undirected graph of n
nodes and three types of edges:
- Type 1: Can be traversed by Alice only.
- Type 2: Can be traversed by Bob only.
- Type 3: Can be traversed by both Alice and Bob.
Given an array edges
where edges[i] = [typei, ui, vi]
represents a bidirectional edge of type typei
between nodes ui
and vi
, find the maximum number of edges you can remove so that after removing the edges, the graph can still be fully traversed by both Alice and Bob. The graph is fully traversed by Alice and Bob if starting from any node, they can reach all other nodes.
Return the maximum number of edges you can remove, or return -1
if Alice and Bob cannot fully traverse the graph.
Example 1:
Input: n = 4, edges = [[3,1,2],[3,2,3],[1,1,3],[1,2,4],[1,1,2],[2,3,4]] Output: 2 Explanation: If we remove the 2 edges [1,1,2] and [1,1,3]. The graph will still be fully traversable by Alice and Bob. Removing any additional edge will not make it so. So the maximum number of edges we can remove is 2.
Example 2:
Input: n = 4, edges = [[3,1,2],[3,2,3],[1,1,4],[2,1,4]] Output: 0 Explanation: Notice that removing any edge will not make the graph fully traversable by Alice and Bob.
Example 3:
Input: n = 4, edges = [[3,2,3],[1,1,2],[2,3,4]] Output: -1 Explanation: In the current graph, Alice cannot reach node 4 from the other nodes. Likewise, Bob cannot reach 1. Therefore it's impossible to make the graph fully traversable.
Constraints:
1 <= n <= 105
1 <= edges.length <= min(105, 3 * n * (n - 1) / 2)
edges[i].length == 3
1 <= typei <= 3
1 <= ui < vi <= n
- All tuples
(typei, ui, vi)
are distinct.
Union find.
class UnionFind:
def __init__(self, n):
self.p = list(range(n))
self.n = n
def union(self, a, b):
pa, pb = self.find(a - 1), self.find(b - 1)
if pa == pb:
return False
self.p[pa] = pb
self.n -= 1
return True
def find(self, x):
if self.p[x] != x:
self.p[x] = self.find(self.p[x])
return self.p[x]
class Solution:
def maxNumEdgesToRemove(self, n: int, edges: List[List[int]]) -> int:
ufa, ufb = UnionFind(n), UnionFind(n)
ans = 0
for t, u, v in edges:
if t == 3:
if ufa.union(u, v):
ufb.union(u, v)
else:
ans += 1
ans += sum(
(t == 1 and not ufa.union(u, v)) or (t == 2 and not ufb.union(u, v))
for t, u, v in edges
)
return ans if ufa.n == 1 and ufb.n == 1 else -1
class Solution {
public int maxNumEdgesToRemove(int n, int[][] edges) {
UnionFind ufa = new UnionFind(n);
UnionFind ufb = new UnionFind(n);
int ans = 0;
for (int[] e : edges) {
if (e[0] == 3) {
if (ufa.union(e[1], e[2])) {
ufb.union(e[1], e[2]);
} else {
++ans;
}
}
}
for (int[] e : edges) {
if ((e[0] == 1 && !ufa.union(e[1], e[2])) || (e[0] == 2 && !ufb.union(e[1], e[2]))) {
++ans;
}
}
return ufa.n == 1 && ufb.n == 1 ? ans : -1;
}
}
class UnionFind {
public int[] p;
public int n;
public UnionFind(int n) {
p = new int[n];
for (int i = 0; i < n; ++i) {
p[i] = i;
}
this.n = n;
}
public boolean union(int a, int b) {
int pa = find(a - 1);
int pb = find(b - 1);
if (pa == pb) {
return false;
}
p[pa] = pb;
--n;
return true;
}
public int find(int x) {
if (p[x] != x) {
p[x] = find(p[x]);
}
return p[x];
}
}
class UnionFind {
public:
vector<int> p;
int n;
UnionFind(int _n)
: n(_n)
, p(_n) {
iota(p.begin(), p.end(), 0);
}
bool unite(int a, int b) {
int pa = find(a - 1), pb = find(b - 1);
if (pa == pb) return false;
p[pa] = pb;
--n;
return true;
}
int find(int x) {
if (p[x] != x) p[x] = find(p[x]);
return p[x];
}
};
class Solution {
public:
int maxNumEdgesToRemove(int n, vector<vector<int>>& edges) {
UnionFind ufa(n), ufb(n);
int ans = 0;
for (auto& e : edges) {
if (e[0] == 3) {
if (ufa.unite(e[1], e[2]))
ufb.unite(e[1], e[2]);
else
++ans;
}
}
for (auto& e : edges)
if ((e[0] == 1 && !ufa.unite(e[1], e[2])) || (e[0] == 2 && !ufb.unite(e[1], e[2])))
++ans;
return ufa.n == 1 && ufb.n == 1 ? ans : -1;
}
};
type unionFind struct {
p []int
n int
}
func newUnionFind(n int) *unionFind {
p := make([]int, n)
for i := range p {
p[i] = i
}
return &unionFind{p, n}
}
func (uf *unionFind) find(x int) int {
if uf.p[x] != x {
uf.p[x] = uf.find(uf.p[x])
}
return uf.p[x]
}
func (uf *unionFind) union(a, b int) bool {
pa, pb := uf.find(a-1), uf.find(b-1)
if pa == pb {
return false
}
uf.p[pa] = pb
uf.n--
return true
}
func maxNumEdgesToRemove(n int, edges [][]int) int {
ufa, ufb := newUnionFind(n), newUnionFind(n)
ans := 0
for _, e := range edges {
if e[0] == 3 {
if ufa.union(e[1], e[2]) {
ufb.union(e[1], e[2])
} else {
ans++
}
}
}
for _, e := range edges {
if (e[0] == 1 && !ufa.union(e[1], e[2])) || (e[0] == 2 && !ufb.union(e[1], e[2])) {
ans++
}
}
if ufa.n == 1 && ufb.n == 1 {
return ans
}
return -1
}