最小生成树——kruskal算法
文章平均质量分 88
Menglei Min
这个作者很懒,什么都没留下…
展开
-
UVA, 11733 (kruscal,最小生成树)
Airports From:UVA, 11733 Submit Time Limit: 1000 MS The government of a certain developing nation wants to improve transportation in one of its most inacces原创 2015-01-10 16:48:08 · 880 阅读 · 0 评论 -
UVA1395 Slim Span(kruskal算法)
Slim Span [PDF Link] Given an undirected weighted graph G , you should find one of spanning trees specified as follows. The graph G is an ordered pair (V, E) , where V is a set of vertices {v1,原创 2015-01-12 21:14:09 · 924 阅读 · 0 评论 -
UVA 10369(求第K长的边,kruskal算法模板)
题目大意: 有P个站点和S个卫星及无限长度的无线网,要把站点联通,卫星对两地的距离没有任何要求,无线网在距离越长时,所消耗的费用越多,耗费的价格按照那条最长的用无线网架设的路的长度来算,求最小话费。 解题思路: kruskal算法模板,边按照从大到小排列,第P-S条即为所求的D。原创 2014-12-14 20:11:43 · 707 阅读 · 0 评论