ZOJ 1542//POJ1861这题给的样例有点坑爹啊!木有按照样例输出,居然过了。啥破题啊!样例与实际的题意不符,这是误导了好多孩纸啊!
题目的本意应该是叫你求出最小生成树的最大边,和边的个数,最后把每条边的连接情况打印出来。ViewCode1#include
2#include
3#include
4#include
5#defineN15001
6
7intfather[1001];//按照模板敲的
8intp[N],n,m;
9typedefstruct
10{
11intx,y;
12intw;
13