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

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

Hard

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…


This content originally appeared on DEV Community and was authored by MD ARIFUL HAQUE

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

Hard

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:

ex1

  • 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:

ex2

  • 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:

ex3

  • 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.

Solution:

class UnionFind {
    private $parent;
    private $rank;

    public function __construct($n) {
        $this->parent = range(0, $n);
        $this->rank = array_fill(0, $n + 1, 1);
    }

    public function find($x) {
        if ($this->parent[$x] !== $x) {
            $this->parent[$x] = $this->find($this->parent[$x]);
        }
        return $this->parent[$x];
    }

    public function union($x, $y) {
        $rootX = $this->find($x);
        $rootY = $this->find($y);

        if ($rootX === $rootY) {
            return false;
        }

        if ($this->rank[$rootX] > $this->rank[$rootY]) {
            $this->parent[$rootY] = $rootX;
        } elseif ($this->rank[$rootX] < $this->rank[$rootY]) {
            $this->parent[$rootX] = $rootY;
        } else {
            $this->parent[$rootY] = $rootX;
            $this->rank[$rootX]++;
        }

        return true;
    }
}

class Solution {

    /**
     * @param Integer $n
     * @param Integer[][] $edges
     * @return Integer
     */
    function maxNumEdgesToRemove($n, $edges) {
        $ufAlice = new UnionFind($n);
        $ufBob = new UnionFind($n);

        usort($edges, function($a, $b) {
            return $b[0] - $a[0];
        });

        $requiredEdges = 0;

        foreach ($edges as $edge) {
            $type = $edge[0];
            $u = $edge[1];
            $v = $edge[2];

            if ($type === 3) {
                $unionAlice = $ufAlice->union($u, $v);
                $unionBob = $ufBob->union($u, $v);
                if ($unionAlice || $unionBob) {
                    $requiredEdges++;
                }
            } elseif ($type === 1) {
                if ($ufAlice->union($u, $v)) {
                    $requiredEdges++;
                }
            } elseif ($type === 2) {
                if ($ufBob->union($u, $v)) {
                    $requiredEdges++;
                }
            }
        }

        for ($i = 2; $i <= $n; $i++) {
            if ($ufAlice->find($i) !== $ufAlice->find(1) || $ufBob->find($i) !== $ufBob->find(1)) {
                return -1;
            }
        }

        return count($edges) - $requiredEdges;
    }
}

Contact Links


This content originally appeared on DEV Community and was authored by MD ARIFUL HAQUE


Print Share Comment Cite Upload Translate Updates
APA

MD ARIFUL HAQUE | Sciencx (2024-06-30T18:27:16+00:00) 1579. Remove Max Number of Edges to Keep Graph Fully Traversable. Retrieved from https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/

MLA
" » 1579. Remove Max Number of Edges to Keep Graph Fully Traversable." MD ARIFUL HAQUE | Sciencx - Sunday June 30, 2024, https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/
HARVARD
MD ARIFUL HAQUE | Sciencx Sunday June 30, 2024 » 1579. Remove Max Number of Edges to Keep Graph Fully Traversable., viewed ,<https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/>
VANCOUVER
MD ARIFUL HAQUE | Sciencx - » 1579. Remove Max Number of Edges to Keep Graph Fully Traversable. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/
CHICAGO
" » 1579. Remove Max Number of Edges to Keep Graph Fully Traversable." MD ARIFUL HAQUE | Sciencx - Accessed . https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/
IEEE
" » 1579. Remove Max Number of Edges to Keep Graph Fully Traversable." MD ARIFUL HAQUE | Sciencx [Online]. Available: https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/. [Accessed: ]
rf:citation
» 1579. Remove Max Number of Edges to Keep Graph Fully Traversable | MD ARIFUL HAQUE | Sciencx | https://www.scien.cx/2024/06/30/1579-remove-max-number-of-edges-to-keep-graph-fully-traversable/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.