PAT 1003 Emergency

本文探讨了作为城市应急救援团队领导者时,在面对紧急情况时如何迅速集结资源并进行有效救援。通过应用Dijkstra算法解决最短路径问题,确保救援队伍能够尽快到达指定地点,同时最大化沿途集结的救援人员数量。

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

As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between any pair of cities are marked on the map. When there is an emergency call to you from some other city, your job is to lead your men to the place as quickly as possible, and at the mean time, call up as many hands on the way as possible.

Input

Each input file contains one test case. For each test case, the first line contains 4 positive integers: N (<= 500) - the number of cities (and the cities are numbered from 0 to N-1), M - the number of roads, C1 and C2 - the cities that you are currently in and that you must save, respectively. The next line contains N integers, where the i-th integer is the number of rescue teams in the i-th city. Then M lines follow, each describes a road with three integers c1, c2 and L, which are the pair of cities connected by a road and the length of that road, respectively. It is guaranteed that there exists at least one path from C1 to C2.

Output

For each test case, print in one line two numbers: the number of different shortest paths between C1 and C2, and the maximum amount of rescue teams you can possibly gather.
All the numbers in a line must be separated by exactly one space, and there is no extra space allowed at the end of a line.

Sample Input
5 6 0 2
1 2 1 5 3
0 1 1
0 2 2
0 3 1
1 2 1
2 4 1
3 4 1
Sample Output
2 4

解题思路:

简单的最短路算法题目,应用Dijkstra算法即可解答。


#include<stdio.h>

int map[510][510];//邻接矩阵

int max;//到目的地的最大救援人员数

#define INF 0x7fffffff//表示两点之间无路
int Dijkstra(int n,int c1,int c2,int rescue[])
{
    int v[510],index,dist[510],i,min,j,sum[510],temp,num[510];
    for(i=0;i<n;i++)//初始化距离,访问标记,各点到原点的最短路径数,最大救援人员数
    {
        v[i]=0;
        dist[i]=INF;
        sum[i]=0;
        num[i]=0;
    }

    dist[c1]=0;num[c1]=rescue[c1];sum[c1]=1;max=0;

    for(i=0;i<n;i++)
    {
        min=INF;
        for(j=0;j<n;j++)
            if(!v[j]&&dist[j]<min)
            {
                min=dist[j];
                index=j;
            }
        if(v[index]==1)break;
        v[index]=1;
        for(j=0;j<n;j++)
        {
            if(map[index][j]==INF)
                continue;
            temp=dist[index]+map[index][j];
            
            if(temp<dist[j])
            {
                dist[j]=temp;
                num[j]=num[index]+rescue[j];
                sum[j]=sum[index];
            }
            else if(temp==dist[j])
            {
                sum[j]+=sum[index];
                if(num[j]<num[index]+rescue[j])
                    num[j]=num[index]+rescue[j];
            }
        }
    }
    max=num[c2];
    return sum[c2];
}
int main()
{
    int n,m,c1,c2,i,j,k,rescue[510]={0},cnt=0;
    for(i=0;i<510;i++)
        for(j=0;j<510;j++)
            map[i][j]=INF;
    scanf("%d%d%d%d",&n,&m,&c1,&c2);
    for(i=0;i<n;i++){
        scanf("%d",&rescue[i]);
    }
    for(i=0;i<m;i++)
    {
        scanf("%d%d",&j,&k);
        scanf("%d",&map[j][k]);
        map[k][j]=map[j][k];
    }
    cnt=Dijkstra(n,c1,c2,max,rescue);
    printf("%d %d\n",cnt,max);
    return 0;
}

03-25
当前提供的引用内容并未涉及 PAT 1003 的具体描述或解决方案。然而,可以基于 PAT 题目的常见模式以及算法竞赛的知识体系来推测其可能的内容。 通常情况下,PAT(Programming Ability Test)中的题目会围绕常见的数据结构与算法展开,例如字符串处理、动态规划、图论、贪心算法等。对于 PAT 1003,虽然具体的题目尚未提供,但可以根据 PAT 考试的特点推断出一些通用的信息: ### 可能的主题范围 如果 PAT 1003 是一道典型的编程题,则它可能会涉及到以下主题之一: - **字符串操作**:如子串匹配、正则表达式应用等。 - **数组/列表操作**:查找最大值、最小值或者特定条件下的元素组合。 - **基本算法设计**:如排序、二分查找或其他基础算法的应用。 以下是针对假设场景下的一般性讨论和代码实现示例。 --- #### 假设情景一:字符串处理类问题 假如 PAT 1003 涉及到字符串的操作,比如统计字符频率并按某种规则排序输出,那么可以用如下方法解决: ```python from collections import Counter def process_string(s): count = Counter(s) # 统计每个字符出现次数 result = sorted(count.items(), key=lambda x: (-x[1], ord(x[0]))) # 排序逻辑 return ''.join([char * freq for char, freq in result]) input_str = input().strip() output_str = process_string(input_str) print(output_str) ``` 上述代码实现了对输入字符串中各字符按照频次降序排列的功能[^4]。若有相同频次,则依据 ASCII 编码顺序升序排列。 --- #### 假设情景二:简单数值计算型问题 另一种可能性是该题属于简单的数值运算范畴,例如求解一组数列的平均值及其偏差情况。 ```python import math def calculate_statistics(numbers): mean_value = sum(numbers) / len(numbers) variance = sum((num - mean_value)**2 for num in numbers) / len(numbers) std_deviation = math.sqrt(variance) return round(mean_value, 2), round(std_deviation, 2) raw_input = list(map(float, input().split())) mean, deviation = calculate_statistics(raw_input) print(f"{mean} {deviation}") ``` 此段程序能够接收一系列浮点数作为输入,并返回它们的均值与标准差结果[^5]。 --- 尽管目前无法确切得知 PAT 1003 的具体内容,但从以往经验来看,大多数此类考试都会集中考察考生的基础编码能力与逻辑思维水平。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值