1579. Remove Max Number of Edges to Keep Graph Fully Traversable

Source code notebook Author Update time

Alice and Bob have an undirected graph of n nodes and 3 types of edges:

  • Type 1: Can be traversed by Alice only.
  • Type 2: Can be traversed by Bob only.
  • Type 3: Can by 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 it 's impossible for the graph to be fully traversed by Alice and Bob.

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 <= 10^5
  • 1 <= edges.length <= min(10^5, 3 * n * (n-1) / 2)
  • edges[i].length == 3
  • 1 <= edges[i][0] <= 3
  • 1 <= edges[i][1] < edges[i][2] <= n
  • All tuples (typei, ui, vi) are distinct.
# @lc code=start
using LeetCode

function max_num_edges_to_remove(n, edges::Vector{Vector{Int}})
    find_root(u::Int)::Int = (father[u] == u) ? u : (father[u] = find_root(father[u]))
    issame_root(u::Int, v::Int)::Bool = find_root(u) == find_root(v)
    function merge(u::Int, v::Int)
        u_root = find_root(u)
        v_root = find_root(v)
        if u_root != v_root
            n -= 1
            father[u_root] = v_root
        end
    end
    father = collect(1:n)
    res = 0
    for edge in edges
        if edge[1] == 3
            (issame_root(edge[2], edge[3])) ? (res += 1) : (merge(edge[2], edge[3]))
        end
    end
    m = n
    father2 = father[:]
    for edge in edges
        if edge[1] == 1
            (issame_root(edge[2], edge[3])) ? (res += 1) : (merge(edge[2], edge[3]))
        end
    end
    if n != 1
        return -1
    end
    father, n = father2, m
    for edge in edges
        if edge[1] == 2
            (issame_root(edge[2], edge[3])) ? (res += 1) : (merge(edge[2], edge[3]))
        end
    end
    if n != 1
        return -1
    end
    return res
end
# @lc code=end
max_num_edges_to_remove (generic function with 1 method)

This page was generated using DemoCards.jl and Literate.jl.