A1003. Emergency
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
#include<cstdio>
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int G[][], teams[], dst[], visit[] = {}, pathNum[] = {}, teamSum[] = {};
int N, M, C1, C2;
const int INF = ;
void dijkstra(int s){
pathNum[s] = ;
for(int i = ; i < N; i++){
dst[i] = INF;
}
dst[s] = ;
teamSum[s] = teams[s];
for(int i = ; i < N; i++){
int u = -, minlen = INF;
for(int j = ; j < N; j++){
if(visit[j] == && dst[j] < minlen){
minlen = dst[j];
u = j;
}
}
if(u == -)
return;
else visit[u] = ;
for(int j = ; j < N; j++){
if(visit[j] == && G[u][j] != INF && dst[u] + G[u][j] < dst[j]){
dst[j] = dst[u] + G[u][j];
pathNum[j] = pathNum[u];
teamSum[j] = teamSum[u] + teams[j];
}else if(visit[j] == && G[u][j] != INF && dst[u] + G[u][j] == dst[j] && teamSum[u] + teams[j] > teamSum[j]){
dst[j] = dst[u] + G[u][j];
pathNum[j] += pathNum[u];
teamSum[j] = teamSum[u] + teams[j];
}else if(visit[j] == && G[u][j] != INF && dst[u] + G[u][j] == dst[j] && teamSum[u] + teams[j] <= teamSum[j]){
dst[j] = dst[u] + G[u][j];
pathNum[j] += pathNum[u];
}
}
}
}
int main(){
scanf("%d%d%d%d", &N, &M, &C1, &C2);
int temp1, temp2, temp3;
for(int i = ; i < N; i++){
scanf("%d", &teams[i]);
}
fill(G[], G[] + *, INF);
for(int i = ; i < M; i++){
scanf("%d%d%d", &temp1, &temp2, &temp3);
G[temp1][temp2] = G[temp2][temp1] = temp3;
}
dijkstra(C1);
printf("%d %d", pathNum[C2], teamSum[C2]);
cin >> N;
return ;
}
总结:
1、迪杰斯特拉求最短路径,并计算最短路径的条数。如果有多条最短路,计算出他们中的最大点权之和。
2、迪杰斯特拉伪代码:
int visit[], G[][], dst[], pathNum[], v[], w[];
void dijkstra(int s){
初始化:visit表示已经最优的点,初始全为0.
G存储图,初始全为INF
dst存储到源点的最短距离,初始dst[s]为0,其它为INF
pathNum存储到源点的最短路条数,初始pathNum[s]为1,其它全为0
v表示从源点一路累加的点权之和(应还有一个记录点权的数组),初始v[s]为自身的点权,其它全为0
w表示从源点一路累加的边权之和,初始只有w[s]为0,其它全为INF
for(int i = ; i < N; i++){//循环N次,每次能找到一个
int u = -;
选择一个未被最优化的且dst最短的节点为u
将其visit设为1
for(int j = ; j < N; j++){
if(visit[j] == && G[u][j] != INF){
if(dst[u] + G[u][j] < dst[j]){
dst[j] = dst[u] + G[u][j];
pathNum[j] = pathNum[u];
}else if(dst[u] + G[u][j] == dst[j]){
pathNum[j] = pathNum[j] + pathNum[u];
}
}
}
}
}
在第一标尺(最短距离)相等的情况下,第二标尺:
边权:当距离更优时,更新dst和w;当距离相等时且第二标尺更优时,更新第二标尺w。
点权:同边权
最短路径条数:当距离更优时,pathNum[ j ]继承pathNum[ u ]。当距离相等时, pathNum[ j ]累加pathNum[ u ]。
3、dijkstra + DFS:仅仅用dijkstra专心求最短路,在过程中记录前驱节点。使用 vector<int> pre[100],当 dst[u] + G[u][j] < dst[j] 时,清空pre[ j ],并将u加入其中。当 dst[u] + G[u][j] == dst[j] 时,仅仅把u加入pre[ j ]。最终得到一棵以终点C2为根,以源点C1为叶节点的树。可以使用DFS,与一个vector<int> temp,得到一条完整路径后再计算各种标尺。
4、初始化 const int INF = 100000000; fill(G[0], G[0] + 501*501, INF);
A1003. Emergency的更多相关文章
- PAT A1003 Emergency 题解
PAT A1003 Emergency PAT A1003 Emergency 题目简述: 原题为英文题目,所以在这里简述一下题意: 给定n个点和m条无向路以及起点.终点 下面一行n个数,第i个数表示 ...
- PAT_A1003#Emergency
Source: PAT A1003 Emergency (25 分) Description: As an emergency rescue team leader of a city, you ar ...
- PTA A1003&A1004
第二天 A1003 Emergency (25 分) 题目内容 As an emergency rescue team leader of a city, you are given a specia ...
- PAT (Advanced Level) Practice(更新中)
Source: PAT (Advanced Level) Practice Reference: [1]胡凡,曾磊.算法笔记[M].机械工业出版社.2016.7 Outline: 基础数据结构: 线性 ...
- 图的最短路径Dijkstra
#include <stdio.h> #include <string.h> #include <vector> #include <queue> #i ...
- PAT甲级题解分类byZlc
专题一 字符串处理 A1001 Format(20) #include<cstdio> int main () { ]; int a,b,sum; scanf ("%d %d& ...
- 1003 Emergency (25 分)
1003 Emergency (25 分) As an emergency rescue team leader of a city, you are given a special map of y ...
- 1003. Emergency (25)
As an emergency rescue team leader of a city, you are given a special map of your country. The map s ...
- Emergency(山东省第一届ACM省赛)
Emergency Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^ 题目描述 Kudo’s real name is not Kudo. H ...
随机推荐
- laravel 循环中子元素使用&符号嵌入到父级,经典版
/**ajax 获取企业名称 * * @param Request $request * * @return \Illuminate\Http\JsonResponse * @author lxw * ...
- JS中的<a>标签
<a>标签可定义锚.一个锚有两种用法: 通过使用 href 属性,创建一个到另外一个文档的链接 通过使用 name 或 id 属性,创建一个文档内部的书签 如果是在 HTML 5 中,它定 ...
- git的简单使用(一些小操作,持续更新)
第一次使用git的过程记录 参考了两个文章 菜鸟教程-git简明指南 阮一峰-常用git命令清单 git的几个工作区(此处参考了上面的两篇介绍) 简单步骤如下 git init 在当前目录建立工作区 ...
- How to remove unwant Internet Explorer Context Menu
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt
- How to mount EFI on macOS
mount -t msdos /dev/disk0s1 /volumes/efi
- How to flash Havoc on enchilada
update fastboot and adb fastboot oem unlock adb debug enchilada reboot to fastboot fastboot devices ...
- linux环境 :LIBRARY_PATH, LD_LIBRARY_PATH区别
参考: https://www.cnblogs.com/mylinux/p/4955448.html LIBRARY_PATH和LD_LIBRARY_PATH是Linux下的两个环境变量,二者的含义和 ...
- codeforces722B
Verse Pattern CodeForces - 722B You are given a text consisting of n lines. Each line contains some ...
- 未能写入输出文件“c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\2da42acc\ab2935
未能写入输出文件“c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Temporary ASP.NET Files\root\2da42acc\ab293 ...
- 查询SQLSERVER中系统所有表
SQL 查询所有表名: SELECT NAME FROM SYSOBJECTS WHERE TYPE='U' SELECT * FROM INFORMATION_SCHEMA.TABLES 查询表的所 ...