PAT 1003. Emergency (25)

本文介绍了一道关于Dijkstra算法的变种题目,旨在寻找两个城市间的最短路径及沿途可集结的最大救援队伍数量。文章详细解释了输入输出格式,并提供了一个具体的示例程序。

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

1003. Emergency (25)

时间限制
400 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

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求c1到c2的最短路径. 有点变化的是, 要额外创建数组记录每个点(city)的总最短路径条数, 以及在各个最短路径中能聚集最大的team数量(最大权重). 另外要注意判断c1,c2是同一个城市时候的特殊情况.


渣代码如下:

#include <iostream>
#include <cstring>
using namespace std;
#define MAX 16843009
#define max(x,y) ((x)>(y)?(x):(y))
int main(void)
{
	int N,M,c1,c2,i,j,k,l;
	cin>>N>>M>>c1>>c2;
	int team[N]; 
	int distance[N][N]; 
	int dist[N];
	int visited[N];
	int path_number[N];
	int total_team[N];
	memset(distance,1,sizeof(distance)); //let each element  be 16843009
	for(i = 0; i < N; i++)
		cin>>team[i];
	for(i = 0; i < M; i++)
	{
		cin>>j>>k>>l;
		distance[j][k]=l;
		distance[k][j]=l;
	}
	for(i = 0; i < N; i++)
	{
		visited[i]=0;
		dist[i]=distance[c1][i];
		total_team[i]=team[i];
		path_number[i] = 1;
	}
	visited[c1]=1;
	dist[c1]=0;
	if(c2==c1){
		cout<<1<<" "<<team[c1];
		return 0;
	}
	while(visited[c2]==0)
	{
		l = MAX;
		for(j = 0; j < N; j++)
		{
			if(visited[j]==0 && dist[j]<l)
			{
				l = dist[j];
				k = j;
			}
		}
		visited[k]=1;
		for(j = 0; j < N; j++)
		{
			if(visited[j]==0 && distance[j][k]!=MAX)	
			{
				if(dist[j] > dist[k]+distance[j][k])
				{
					dist[j] = dist[k]+distance[j][k];
					path_number[j] = path_number[k];
					total_team[j] = total_team[k]+team[j];
				}
				else if(dist[j]==dist[k]+distance[j][k])
				{
					path_number[j]+=path_number[k];
					total_team[j] = max(total_team[j],total_team[k]+team[j]);
				}
			}
		}
	}
	total_team[c2]+=team[c1];
	cout<<path_number[c2]<<" "<<total_team[c2];
	return 0;	

}


资源下载链接为: https://pan.xunlei.com/s/VOYpbLrm0qylrALOE1le-EJFA1?pwd=x564 在 B 站有一则标题为《DeepSeek-v3 扩展树莓派,让语音助手给你 “唱歌”,秒变智能音箱》的视频,视频链接为https://www.bilibili.com/video/BV1a3cceEEpP/?sharesource=copyweb&vd_source=245c190fe77b507d57968a57b3d6f9cf,发布于 2025 年 1 月 11 日 16:18:06。 该视频截至相关数据统计时,播放量达 7229 次,弹幕有 4 条,获得 123 个点赞、98 枚硬币,被 182 人收藏,转发次数为 32 次。视频作者是 “bi 胜 li 量老师”,作者认为 AI 与人的互动在持续进步,AI 不仅能理解并回应人类语言,还可提供个性化服务与帮助。 此外,还有不少相关视频,比如教大家不丢弃废弃音箱,将其升级为已接入 DeepSeek 的小智智能音箱;展示在树莓派上部署小智 AI 的成果,不过存在一点小问题,就是语音助手话太多,使用者插不上话;呈现小爱同学智能音箱与 DeepSeek 的完美结合,打造树莓派 AI 小智;提供资料,指导大家打造树莓派私人语音助手,实现年轻人拥有第一个 “贾维斯” 的想法;还有原创内容,介绍基于国内语音方案的树莓派语音助手,从千问 3 到 DeepSeek-R1-0528,可直连大模型对话;以及教大家用树莓派打造智能语音音箱,该音箱具备聊天、控制家电等高级功能,还有在树莓派 4B 上体验 DeepSeek R1 推理大模型的相关内容。
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、付费专栏及课程。

余额充值