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 ...
随机推荐
- 校园电商项目3(基于SSM)——配置Maven
步骤一:添加必要文件夹 先在src/main/resources下添加两个文件夹 接着在webapp文件夹下添加一个resources文件夹存放我们的静态网页内容 WEB-INF里的文件是不会被客户端 ...
- 报错:ch.qos.logback.core.joran.spi.JoranException
项目中使用了maven. 1.找到本地仓库,删除ch文件夹 2.对项目执行maven install 3.在更新下项目maven update
- python之路-列表、元组、range
一 . 列表 # 列表的定义 列表就是能装对象的对象 在python中用[ ]来描述列表,内部元素用逗号隔开,对数据类型没有要求 索引和切片 lst = ["天龙八部", &quo ...
- python设计模式第十天【观察者模式】
1.应用场景 (1)监听事件驱动程序中的外部事件 (2)监听某个对象的状态变化 (3)发布-订阅模型中,消息出现时通知邮件列表中的订阅者 2. 观察者模式UML图 3. 代码实现: #!/usr/bi ...
- idea 通过命令操作git
关于如何把git(远程)端项目拉取到idea端的操作可以观看:https://blog.csdn.net/autfish/article/details/52513465 在本地向远程提交文件git ...
- vpx
VPX 编辑 本词条缺少名片图,补充相关内容使词条更完整,还能快速升级,赶紧来编辑吧! VPX总线是VITA(VME International Trade Association, VME国际贸易协 ...
- 关于Binder,作为应用开发者你需要知道的全部
作者:rushjs https://www.jianshu.com/p/062a6e4f5cbe github 地址: https://github.com/rushgit/zhongwenjun.g ...
- IntelliJ cannot log in to GitHub上传github报错解决
重装系统,新装的Intellij IDEA上新建的项目上传github失败,报错: invalid authentication token ... 此处多为本地git用户的用户名/邮箱,与之前设置的 ...
- Go语言函数相关
1.函数的声明定义 //func关键字 //getStudent函数名 //(id int, classId int) 参数列表 //(name string,age int) 返回值列表 func ...
- kubernetes 简单service的例子
首先建一个Deployment: apiVersion: apps/v1beta1 kind: Deployment metadata: name: httpd spec: replicas: 3 t ...