| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 (추가 시간 없음) | 1024 MB | 66 | 34 | 28 | 53.846% |
You are given an undirected graph $G=(V,E)$.
If you are drawing in the edges one by one, how many edges did you add when the graph becomes connected for the first time.
If the graph never becomes connected after drawing all the edges, output -1.
Here are some useful definitions:
The input line of input contains two space-separated integers $N$ $(1 \leq N \leq 10^6)$ and $M$ $(0 \leq M \leq \min(10^6, \binom{N}{2}))$, the number of vertices and edges in the graph.
Each of the remaining $M$ lines contains two space-separated integers $u_i$ and $v_i$ $(1 \leq u_i, v_i \leq N)$, denoting an undirected edge from node $u_i$ to node $v_i$. No edge connects a node to itself, and there is at most one edge between any pair of nodes.
Print either the number of edges that you added the first time graph becomes connected and -1 otherwise.
2 0
-1
1 0
0
7 11 1 4 1 5 1 6 1 7 2 3 3 4 3 5 3 6 4 7 5 6 6 7
6
ICPC > Regionals > North America > Mid-Central Regional > 2024 Mid-Central USA Programming Contest E번