1003 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 Specification:

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, C~1~ and C~2~ - 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 c~1~, c~2~ 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 C~1~ to C~2~.

Output Specification:

For each test case, print in one line two numbers: the number of different shortest paths between C~1~ and C~2~, 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:

1
2
3
4
5
6
7
8
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:

1
2 4

浅析

Q:求最短路径,若有多条,输出点权最大者

感谢《算法笔记》,对 Dijkstra 这类问题的变形总结的很到位对于最短路径不止一条的各种情况,只需额外增加数组记录即可。

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include 
#include
using namespace std;
const int INF = (1 << 30) - 1;
const int maxn = 510; //顶点数较少,可以使用邻接矩阵
bool vis[maxn]; //是否已经找到最短路径
int weight[maxn],d[maxn],w[maxn],num[maxn]; //顶点的点权,最短路径,路径最大权,最短路径条数
int G[maxn][maxn];
int n; //顶点数
void Dijkstra(int s,int t){
fill(vis, vis + maxn, false);
fill(d, d + maxn, INF);
fill(w, w + maxn, 0);
fill(num, num + maxn, 0); //注意初始化为0,非1,不要想当然
d[s] = 0;
num[s] = 1;
w[s] = weight[s];
for (int i = 0; i < n;i++){
int u = -1, min = INF;
for (int j = 0; j < n;j++)
if(vis[j]==false&&d[j]
u = j;
min = d[j];
}
if(u==-1)
return; //不连通的情况
vis[u] = true;
if (vis[t] == true)
return; //已经找到顶点t的最短路径
for (int v = 0; v < n;v++)
if(vis[v]==false&&G[u][v]!=INF){
if(d[u]+G[u][v]
d[v] = d[u] + G[u][v];
w[v] = w[u] + weight[v];
num[v] = num[u];
}
else if(d[v]==d[u]+G[u][v]){
if(w[v]
w[v] = w[u] + weight[v];
num[v] += num[u];
}
}
}
}
int main(){
int m, s, t; //边数,源点,目标点
scanf("%d%d%d%d",&n,&m,&s,&t);
for (int i = 0; i < n;i++)
scanf("%d",&weight[i]);
fill(G[0], G[0] + maxn * maxn, INF); //这个初始化别忘了!!!
for (int i = 0; i < m;i++){
int a1, a2, aw;
scanf("%d%d%d",&a1,&a2,&aw);
G[a1][a2] = G[a2][a1] = aw;
}
Dijkstra(s, t);
printf("%d %d", num[t], w[t]);
return 0;
}
丨fengche丨 wechat
来找我聊天吧~
-------------本文结束感谢您的阅读-------------