博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2349 Prim
阅读量:5126 次
发布时间:2019-06-13

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

Arctic Network

Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 9973 Accepted: 3302
Description
The Department of National Defence (DND) wishes to connect several northern outposts by a wireless network. Two different communication technologies are to be used in establishing the network: every outpost will have a radio transceiver and some outposts will in addition have a satellite channel.
Any two outposts with a satellite channel can communicate via the satellite, regardless of their location. Otherwise, two outposts can communicate by radio only if the distance between them does not exceed D, which depends of the power of the transceivers. Higher power yields higher D but costs more. Due to purchasing and maintenance considerations, the transceivers at the outposts must be identical; that is, the value of D is the same for every pair of outposts.
Your job is to determine the minimum D required for the transceivers. There must be at least one communication path (direct or indirect) between every pair of outposts.
Input
The first line of input contains N, the number of test cases. The first line of each test case contains 1 <= S <= 100, the number of satellite channels, and S < P <= 500, the number of outposts. P lines follow, giving the (x,y) coordinates of each outpost in km (coordinates are integers between 0 and 10,000).
Output
For each case, output should consist of a single line giving the minimum D required to connect the network. Output should be specified to 2 decimal points.
Sample Input
1
2 4
0 100
0 300
0 600
150 750
Sample Output
212.13
Source

Waterloo local 2002.09.28

/*********************************************        author    :    Grant Yuan        time      :    2014.7.31        algorithm :    Prim        source    :    POJ 2349        **********************************************/#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3fffffff#define MAX 507using namespace std;struct point{int x;int y;};int t,n,p;point v[MAX];double cost[MAX][MAX];bool used[MAX];double mincost[MAX];priority_queue
path;void prim(){ for(int i=1;i<=n;i++) { mincost[i]=INF; used[i]=false; } mincost[1]=0; for(int i=1;i<=n;i++) { double temp=INF;int k=1; for(int j=1;j<=n;j++) { if(!used[j]&&mincost[j]

转载于:https://www.cnblogs.com/codeyuan/p/4254466.html

你可能感兴趣的文章
DataGridView的行的字体颜色变化
查看>>
局域网内手机访问电脑网站注意几点
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Linux操作系统 和 Windows操作系统 的区别
查看>>
Android-多线程AsyncTask
查看>>
LeetCode【709. 转换成小写字母】
查看>>
如何在Access2007中使用日期类型查询数据
查看>>
CF992E Nastya and King-Shamans(线段树二分+思维)
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>
WCF揭秘——使用AJAX+WCF服务进行页面开发
查看>>
【题解】青蛙的约会
查看>>
IO流
查看>>
mybatis调用存储过程,获取返回的游标
查看>>
设计模式之装饰模式(结构型)
查看>>
面向对象的设计原则
查看>>
Swift3.0服务端开发(三) Mustache页面模板与日志记录
查看>>
EntityFrameWork 实现实体类和DBContext分离在不同类库
查看>>