博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj2485——Highways(最小生成树+prim)
阅读量:2344 次
发布时间:2019-05-10

本文共 2270 字,大约阅读时间需要 7 分钟。

Description

The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has no public highways. So the traffic is difficult in Flatopia. The Flatopian government is aware of this problem. They’re planning to build some highways so that it will be possible to drive between any pair of towns without leaving the highway system.

Flatopian towns are numbered from 1 to N. Each highway connects exactly two towns. All highways follow straight lines. All highways can be used in both directions. Highways can freely cross each other, but a driver can only switch between highways at a town that is located at the end of both highways.

The Flatopian government wants to minimize the length of the longest highway to be built. However, they want to guarantee that every town is highway-reachable from every other town.

Input

The first line of input is an integer T, which tells how many test cases followed.

The first line of each case is an integer N (3 <= N <= 500), which is the number of villages. Then come N lines, the i-th of which contains N integers, and the j-th of these N integers is the distance (the distance should be an integer within [1, 65536]) between village i and village j. There is an empty line after each test case.
Output

For each test case, you should output a line contains an integer, which is the length of the longest road to be built such that all the villages are connected, and this value is minimum.

Sample Input

1

3

0 990 692
990 0 179
692 179 0
Sample Output

692

求最小生成树中最长的那条边,还是套模板

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 2005#define Mod 10001using namespace std;int n,vis[MAXN],pre[MAXN];double map[MAXN][MAXN],dis[MAXN];double prim(){ int i,j,pos; double min,ans; int cnt=0; ans=0; memset(vis,0,sizeof(vis)); vis[1]=1,pos=1; for(i=1; i<=n; ++i) { dis[i]=map[pos][i]; } bool flag=false; for(i=1; i
map[pos][j]) { dis[j]=map[pos][j]; } } if(cnt==n-1) return ans; else return -1;}int main(){ int t; scanf("%d",&t); while(t--) { memset(map,0,sizeof(map)); scanf("%d",&n); for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) scanf("%lf",&map[i][j]); int ans=prim(); printf("%d\n",ans); } return 0;}

转载地址:http://gtcvb.baihongyu.com/

你可能感兴趣的文章
ie和firefox操作table对象的异同
查看>>
Hadoop 实现定制的Writable类型(附部分源码)
查看>>
一台机器上运行多个ActiveMq
查看>>
java.lang.OutOfMemoryError: PermGen space及其解决方法
查看>>
Nginx配置文件nginx.conf中文详解
查看>>
如何让ajaxfileupload.js支持IE9,IE10,并可以传递多个参数?
查看>>
highcharts扩展tooltip提示异步信息
查看>>
activiti--History 历史配置
查看>>
并行计算框架 Apache Hama
查看>>
eclipse中tomcat启动超时解决办法
查看>>
异质链表
查看>>
debain 安装中文字体
查看>>
activiti MySQLIntegrityConstraintViolationException: Cannot delete or update a parent row
查看>>
activiti事务和自己业务事务共同的使用
查看>>
activiti--部署bpmn/bar文件详解
查看>>
win7使用Putty 连接debain
查看>>
debain 常用命令
查看>>
debain 安装amd显卡驱动
查看>>
Java Jacob 打印word文档
查看>>
Java Freemarker 根据模板生成Word
查看>>