Medium
,DFS
,BFS
,Graph
1319. 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]
= [, ] represents a connection between computers and . Any computer can reach any other computer directly or indirectly through the network.
You are 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 is not possible, return -1
.
Example 1:
Example 2:
Example 3:
Constraints:
n
<= 105connections.length
<= min(n * (n - 1) / 2, 105)connections[i].length
== 2n
Ron ChenThu, Mar 23, 2023
gpwork4uFri, Mar 24, 2023
MarsgoatThu, Mar 23, 2023