最小生成树 - G - Arctic Network

本文介绍了一种使用Prim算法解决无线网络连接问题的方法,旨在确定最少的能量规格来确保所有站点间的有效通信。通过计算不同站点间距离并采用最小生成树算法,最终确定了满足网络连接需求的最低成本。

G - Arctic Network


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 

题意:有N个地方需要连接,其中有无线通讯机器的可以无限距离与其他无线通信机器通信,而有线通信机器需要消耗等于距离的能           量,且有线通信的机器都是统一规格,给出各点位置与无线通信机器数量M,求有线通信机器的规格最小为多少?

题解:prim算法的最小生成树将选中的边的权值都记录下来,然后排序,找到第N-M大的值极为最小规格。

AC代码:
#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<cmath>
using namespace std;
int n,t,m,sum;
const int maxn = 600;
const int inf = 0x3f3f3f3f;
double a[maxn][maxn];
double b[maxn];
int x[maxn],y[maxn];
double length[maxn];
int vis[maxn];
int path[maxn];
void prim()
{
    for(int i=1;i<=n;i++)
    {
        vis[i]=0;
        path[i]=1;
        length[i]=a[1][i];
    }
    for(int i=1;i<=n;i++)
    {
        double u=inf;
        int v;
        for(int j=1;j<=n;j++)
        {
            if(vis[j]==0&&length[j]<u)
            {
                u=length[j];
                v=j;
            }
        }
        vis[v]=1;
        b[sum++]=length[v];
        for(int j=1;j<=n;j++)
        {
            if(vis[j]==0&&length[j]>a[v][j])
            {
                length[j]=a[v][j];
                path[j]=u;
            }
        }
    }
}
double leng(double x1,double y1,double x2,double y2)
{
    return sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
}
int main()
{
    cin>>t;
    while(t--)
    {
        sum=0;
        cin>>m>>n;
        for(int i=1;i<=n;i++)cin>>x[i]>>y[i];
        for(int i=1;i<=n;i++)
            for(int j=i;j<=n;j++)
            a[i][j]=a[j][i]=leng(x[i],y[i],x[j],y[j]);
        prim();
        sort(b,b+n);
        printf("%.2f\n",b[n-m]);
    }
    return 0;
}


### 亚北极地区冬季特征 亚北极地区的气候受到多种因素的影响,其中包括大气环流模式的作用。特别是北极大气振荡(Arctic Oscillation, AO),它与中高纬度区域的气候变化密切相关[^1]。当AO处于正相位时,极地涡旋增强,导致冷空气被限制在极地区域内,从而使得亚北极地区的冬季相对温和。而当AO处于负相位时,极地涡旋减弱,冷空气更容易向南扩散至亚北极及其他较低纬度地区。 亚北极地区的冬季通常表现出以下几个显著特点: 1. **低温环境** 冬季气温可以降至零下几十摄氏度,在某些极端情况下甚至更低。这种寒冷主要由长时间的日间短缩以及积雪覆盖引起的地面辐射冷却效应所致。 2. **降水量较少** 尽管存在一些局部差异,但总体而言,亚北极地区的冬季降水并不算多。这是因为该区域的大气湿度水平本身偏低,并且缺乏足够的水汽输送来支持大规模降水事件的发生。 3. **强风现象** 风速较大也是这一时期的重要气象特征之一。强劲的西北风吹拂过裸露的地表或冰雪表面,进一步加剧了体感温度下降的程度。 4. **生态适应性变化** 生物群落为了应对恶劣条件发展出了各种生存策略,比如动物进入冬眠状态或者迁徙离开;植物则通过落叶减少水分蒸发等方式维持生命活动最低需直至春季到来为止。 ```python def sub_arctic_winter_characteristics(): characteristics = [ "Extremely low temperatures", "Limited precipitation during winters", "Strong winds affecting perceived coldness", "Adaptations among flora/fauna to endure harsh conditions" ] return "\n".join(characteristics) print(sub_arctic_winter_characteristics()) ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值