Uva 10369 - Arctic Network//kruskal

本文讨论了使用最小生成树算法解决北极哨站网络通信问题,通过两种通信技术(无线与卫星)的组合,确保至少每一对哨站之间存在通信路径。详细介绍了算法实现过程,包括求解最小生成树的Kruskal方法,以及如何根据哨站位置和通信成本计算最短连接方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Problem C: 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.

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). 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
分析:看来半天才把题意看懂,每个哨站可以有两种练习方式,用无线地或者是卫星,用卫星没有距离限制,但是卫星频道有限;用无线电有一个cost,就是要求出这个cost。

思路: 一、很明显是个求最小生成树的问题,所以先求最小生成树。

       二、在求最小生成树的时候,可以适当的改动一下,用kruskal的话,每次都是找当前w最大的边,这样其实不用找够p-1条边,只需要找够p-s条边。下面是代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
const int maxn = 505;
struct node
{
    double x;
    double y;
} G[maxn];
int u[maxn*maxn],v[maxn*maxn];
int e[maxn*maxn];
double w[maxn*maxn];
double ans[maxn*maxn];
int f[maxn];
int s,p,t,cnt;
int cmp(const int i,const int j)
{
    return w[i] < w[j];
}
int find(int x)
{
    if(x != f[x])
    {
        f[x] = find(f[x]);
    }
    return f[x];
}

double kruskal(int ok)
{
    cnt = 0;
    for(int i = 0; i < p; i++) f[i] = i;
    sort(e,e+t,cmp);
    for(int i = 0; i < t; i++)
    {
        int edge = e[i];
        int x = find(u[edge]);
        int y = find(v[edge]);
        if(x != y)
        {
            cnt++;
            f[x] = y;
            if(cnt == ok) return w[edge];
        }
    }
}
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d%d",&s,&p);
        double a,b;
        for(int i = 0; i < p; i++)
        {
            scanf("%lf%lf",&a,&b);
            G[i].x = a;
            G[i].y = b;
        }
        t = 0;
        for(int i = 0; i < p; i++)
        {
            for(int j = i + 1; j < p; j++)
            {
                u[t] = i;
                v[t] = j;
                e[t] = t;
                a = G[i].x - G[j].x;
                b = G[i].y - G[j].y;
                w[t++] = sqrt(a * a + b * b);
            }
        }
        printf("%.2lf\n",kruskal(p-s));
    }
    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、付费专栏及课程。

余额充值