zoukankan      html  css  js  c++  java
  • Arctic Network POJ

    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

    题意:有大概500个站点,站点直接可以以用信号接收器连接,也可以用卫星连接,卫星连接不需要成本但只有但两个站点都有卫星的频道时才能连接,信号接收器需要花费金钱买,而且信号接收器的信号半径有不同信号的,
    输入第一行为测试样例数,每个测试样例第一行为已有卫星频道数s,站点数p,往下有p行,每行都表示一个站点的坐标(x,y),0<=x,y<=10000;
    输出:问在保证所有站点都能连接的情况下,需要购买的信号接收器的最大半径时多少。

    思路:首先可以看出这个题相当于在求最小生成树后问点与点之间的最大距离,但由于有卫星的存在因此这个距离不一定时树的最大距离,
    首先我们要将站点之间的距离求出并放入一个容器中,然后按照Kruskal算法求出最小生成树,然后对树的每一个枝条也就是树中的边进行遍历,由于卫星的存在因此可以删掉s-1个枝条,则剩下的枝条的最大距离即是答案
    要注意在每个测试过后都需要把容器清零;

    代码:
      1 #include <cstdio>
      2 #include <fstream>
      3 #include <algorithm>
      4 #include <cmath>
      5 #include <deque>
      6 #include <vector>
      7 #include <queue>
      8 #include <string>
      9 #include <cstring>
     10 #include <map>
     11 #include <stack>
     12 #include <set>
     13 #include <sstream>
     14 #include <iostream>
     15 #define mod 998244353
     16 #define eps 1e-6
     17 #define ll long long
     18 #define INF 0x3f3f3f3f
     19 using namespace std;
     20 
     21 //u表示起点,v表示终点,cost表示花费
     22 struct node
     23 {
     24     int u,v;
     25     double cost;
     26 };
     27 //排序,从小到大
     28 bool cmp(node a,node b)
     29 {
     30     return a.cost<b.cost;
     31 }
     32 //存放边的信息
     33 vector<node> ve;
     34 
     35 //fa表示当前i的最远祖先
     36 int fa[505];
     37 //初始化fa,开始时自己是自己的祖先
     38 void init(int qwq)
     39 {
     40     for(int i=0;i<=qwq;i++)
     41     {
     42         fa[i]=i;
     43     }
     44 }
     45 //查找最远祖先,同时进行路径压缩
     46 int find(int x)
     47 {
     48     if(fa[x]==x)
     49     {
     50         return x;
     51     }
     52     return fa[x]=find(fa[x]);
     53 }
     54 //判断最远祖先是否相同
     55 bool che(int x,int y)
     56 {
     57     return find(x)==find(y);
     58 }
     59 //合并x,y,把他们放到同一个家族中
     60 void mer(int x,int y)
     61 {
     62     if(!che(x,y)) 
     63     {
     64         fa[fa[x]]=fa[y];
     65     }
     66     return ;
     67 }
     68 int n,m;
     69 struct dian
     70 {
     71     double x,y;
     72 };
     73 dian di[505];
     74 vector<node> aggre;
     75 double dist(dian a,dian b)
     76 {
     77     return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
     78 }
     79 int main()
     80 {
     81     scanf("%d",&n);
     82     while(n--)
     83     {
     84         int s,p;
     85         scanf("%d %d",&s,&p);
     86         //初始化
     87         init(p);
     88         for(int i=0;i<p;i++)
     89         {
     90             scanf("%lf %lf",&di[i].x,&di[i].y);
     91         }
     92         node no;
     93         //将站点的位置信息转换成点与点之间的距离并放入到容器中
     94         for(int i=0;i<p-1;i++)
     95         {
     96             for(int j=i+1;j<p;j++)
     97             {
     98                 no.u=i;
     99                 no.v=j;
    100                 no.cost=dist(di[i],di[j]);
    101                 ve.push_back(no);
    102             }
    103         }
    104         //排序
    105         sort(ve.begin(),ve.end(),cmp);
    106         //算法求出树的枝条并放入另一个容器中
    107         for(int i=0;i<ve.size();i++)
    108         {
    109             if(!che(ve[i].u,ve[i].v))
    110             {
    111                 mer(ve[i].u,ve[i].v);
    112                 no = ve[i];
    113                 aggre.push_back(no);
    114             }
    115         }
    116         //排序
    117         sort(aggre.begin(),aggre.end(),cmp);
    118         int ans=aggre.size()-1;
    119         //从小到大,再减去卫星连接的枝条,
    120         if(s-1>0)
    121         {
    122             ans-=(s-1);
    123         }
    124         printf("%.2lf
    ",aggre[ans].cost);
    125         //清除容器的内容
    126         ve.clear();
    127         aggre.clear();
    128     }
    129 }
  • 相关阅读:
    Mininet介绍及安装
    第9周学习进度
    团队效绩计划
    第一阶段冲刺个人博客10
    第一阶段冲刺个人博客09
    第一阶段冲刺个人博客08
    win10自带中文输入法的用户体验
    团队项目冲刺第十天
    构建之法阅读笔记02
    团队项目冲刺第九天
  • 原文地址:https://www.cnblogs.com/mzchuan/p/11736532.html
Copyright © 2011-2022 走看看