306717: CF1242B. 0-1 MST
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
0-1 MST
题意翻译
有一张完全图,n个节点 有m条边的边权为1,其余的都为0 这m条边会给你 问你这张图的最小生成树的权值 ------By zrmpaul题目描述
Ujan has a lot of useless stuff in his drawers, a considerable part of which are his math notebooks: it is time to sort them out. This time he found an old dusty graph theory notebook with a description of a graph. It is an undirected weighted graph on $ n $ vertices. It is a complete graph: each pair of vertices is connected by an edge. The weight of each edge is either $ 0 $ or $ 1 $ ; exactly $ m $ edges have weight $ 1 $ , and all others have weight $ 0 $ . Since Ujan doesn't really want to organize his notes, he decided to find the weight of the minimum spanning tree of the graph. (The weight of a spanning tree is the sum of all its edges.) Can you find the answer for Ujan so he stops procrastinating?输入输出格式
输入格式
The first line of the input contains two integers $ n $ and $ m $ ( $ 1 \leq n \leq 10^5 $ , $ 0 \leq m \leq \min(\frac{n(n-1)}{2},10^5) $ ), the number of vertices and the number of edges of weight $ 1 $ in the graph. The $ i $ -th of the next $ m $ lines contains two integers $ a_i $ and $ b_i $ ( $ 1 \leq a_i, b_i \leq n $ , $ a_i \neq b_i $ ), the endpoints of the $ i $ -th edge of weight $ 1 $ . It is guaranteed that no edge appears twice in the input.
输出格式
Output a single integer, the weight of the minimum spanning tree of the graph.
输入输出样例
输入样例 #1
6 11
1 3
1 4
1 5
1 6
2 3
2 4
2 5
2 6
3 4
3 5
3 6
输出样例 #1
2
输入样例 #2
3 0
输出样例 #2
0