Arctic Network

来源:互联网 发布:辐射4卡顿优化 编辑:程序博客网 时间:2024/06/05 19:58

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
12 40 1000 3000 600150 750
Sample Output
212.13


题意·:有无线电的城市可以随意联系,没有无线电的城市只能跟不超过d距离的城市联系,求d;

           其中有s个城市可以有无线电,共有p个城市,下面有p个城市的坐标


#include<cstdio>#include<cstring>#include<iostream>#include<algorithm>#include<cmath>using namespace std;const int MAXN=509;const int inf=0x3f3f;int n,m;double map[MAXN][MAXN],dis[MAXN];int book[MAXN];struct node{    int a,b;}z[MAXN];double judge(int i,int j){    return sqrt((double)((z[i].a-z[j].a)*(z[i].a-z[j].a)+(z[i].b-z[j].b)*(z[i].b-z[j].b)));}void init(){    for(int i=1;i<=n;i++)        for(int j=1;j<=n;j++)            if(i==j) map[i][j]=0;            else map[i][j]=inf;}int main(){    int T;    scanf("%d",&T);    while(T--)    {        int s,p;        scanf("%d%d",&s,&p);        init();        memset(book,0,sizeof(book));        for(int i=1;i<=p;i++)        {            scanf("%d%d",&z[i].a,&z[i].b);        }        for(int i=1;i<=p;i++)            for(int j=1;j<=p;j++)               map[i][j]=judge(i,j);        for(int i=1;i<=p;i++)            dis[i]=map[1][i];        int cont=1,u;        book[1]=1;        while(cont<p)        {            int minn=inf;            for(int i=1;i<=p;i++)            {                if(!book[i]&&dis[i]<minn)                {                    u=i;                    minn=dis[i];                }            }            book[u]=1,cont++;            for(int v=1;v<=p;v++)            {                if(!book[v]&&dis[v]>map[u][v])                    dis[v]=map[u][v];            }        }        sort(dis+1,dis+p+1);        printf("%.2lf\n",dis[p-s+1]);    }    return 0;}


原创粉丝点击