最小生成树
文章平均质量分 81
「已注销」
这个作者很懒,什么都没留下…
展开
-
hdu1863 畅通工程
畅通工程 省政府“畅通工程”的目标是使全省任何两个村庄间都可以实现公路交通(但不一定有直接的公路相连,只要能间接通过公路可达即可)。经过调查评估,得到的统计表中列出了有可能建设公路的若干条道路的成本。现请你编写程序,计算出全省畅通需要的最低成本。 Input 测试输入包含若干测试用例。每个测试用例的第1行给出评估的道路条数 N、村庄数目M ( < 100 );随后的 N 行对应村庄原创 2017-10-23 18:54:57 · 227 阅读 · 0 评论 -
uva6437 Power Plant
#include #include #include #include #define N 100090 using namespace std; int n,m,t; int pre[N]; struct node { int st,ed,val; }e[N]; void init() { for(int i=0;i { p原创 2017-10-23 19:07:22 · 318 阅读 · 0 评论 -
uva1395 Slim Span
Slim Span #include #include #include #include #define N 100090 #define MAXN 99999999 using namespace std; int n,m,t=0; int pre[N],used[N]; struct node { int st,ed,val; }e[N]; void原创 2017-10-23 19:06:45 · 324 阅读 · 0 评论 -
poj1251 Jungle Roads
Jungle Roads The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid money was spent on extra roads between villages some years ago. But the jungle overtakes roads原创 2017-10-23 19:03:02 · 239 阅读 · 0 评论 -
uva 10369 - Arctic Network(求最小生成树的第k小边)
Arctic Network(求最小生成树的第k小边) Problem C: Arctic Network The Department of National Defence (DND) wishes to connect several northern outposts by a wireless network. Two different communication technolo原创 2017-10-23 19:05:57 · 309 阅读 · 0 评论 -
poj1789 Truck History
Truck History Advanced Cargo Movement, Ltd. uses trucks of different types. Some trucks are used for vegetable delivery, other for furniture, or for bricks. The company has its own code describing ea原创 2017-10-23 19:05:10 · 231 阅读 · 0 评论 -
poj1679 The Unique MST
The Unique MST Description Given a connected undirected graph, tell if its minimum spanning tree is unique. Definition 1 (Spanning Tree): Consider a connected, undirected graph G = (V, E). A sp原创 2017-10-23 19:04:32 · 244 阅读 · 0 评论 -
poj1258 Agri-Net
Agri-Net Farmer John has been elected mayor of his town! One of his campaign promises was to bring internet connectivity to all farms in the area. He needs your help, of course. Farmer John ordere原创 2017-10-23 19:03:57 · 229 阅读 · 0 评论 -
hdu1879 继续畅通工程
继续畅通工程 省政府“畅通工程”的目标是使全省任何两个村庄间都可以实现公路交通(但不一定有直接的公路相连,只要能间接通过公路可达即可)。现得到城镇道路统计表,表中列出了任意两城镇间修建道路的费用,以及该道路是否已经修通的状态。现请你编写程序,计算出全省畅通需要的最低成本。 Input 测试输入包含若干测试用例。每个测试用例的第1行给出村庄数目N ( 1< N < 100 );随后的 N(原创 2017-10-23 19:02:07 · 811 阅读 · 0 评论 -
hdu1875 畅通工程再续
畅通工程再续 Problem Description 相信大家都听说一个“百岛湖”的地方吧,百岛湖的居民生活在不同的小岛中,当他们想去其他的小岛时都要通过划小船来实现。现在政府决定大力发展百岛湖,发展首先要解决的问题当然是交通问题,政府决定实现百岛湖的全畅通!经过考察小组RPRush对百岛湖的情况充分了解后,决定在符合条件的小岛间建上桥,所谓符合条件,就是2个小岛之间的距离不能小于10米,也不原创 2017-10-23 19:00:27 · 198 阅读 · 0 评论 -
最大生成树
#include #include #include #include using namespace std; #define INF 99999999 int n,m; int mp[1008][1008]; int used[1008],low[1000008]; int prime(int n) { int sum=0,i,time=1,k; mem原创 2017-10-24 19:08:32 · 1092 阅读 · 0 评论