29. Number of Operations to Make Network Connected
There are n computers numbered from 0 to n-1 connected by ethernet cables connections forming a network where connections[i] = [a, b] represents a connection between computers a and b. Any computer can reach any other computer directly or indirectly through the network.
Given an initial computer network connections. You can extract certain cables between two directly connected computers, and place them between any pair of disconnected computers to make them directly connected. Return the minimum number of times you need to do this in order to make all the computers connected. If it's not possible, return -1.
Example 1:

Example 2:

Example 3:
Example 4:
Solution: (Connected components using DFS)
Solution:(Union Find)
Previous28. Find the City With the Smallest Number of Neighbors at a Threshold DistanceNext30. Open the Lock
Last updated
Was this helpful?