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 ...
随机推荐
- js如何复制一个对象?
方法一: 把原来对象的属性遍历一遍,赋给一个新的对象. //深复制对象方法 var cloneObj = function (obj) { var newObj = {}; if (obj insta ...
- MySQL5.5 安装配置方法教程
MySQL下载地址:http://dev.mysql.com/downloads/installer/ 1.首先进入的是安装引导界面 2.然后进入的是类型选择界面,这里有3个类型:Typical(典型 ...
- 记一次tomcat7.0版本启动项目失败问题
测试项目在tomcat7中启动失败,报错如下: @794314bc3 Error during job execution (jobs.Bootstrap) Oops: VerifyError ~ p ...
- MySQL的FIND_IN_SET()函数
今天在做项目时,看到了一个从没见过的MySQL函数——FIND_IN_SET(),顿时就产生了浓郁的兴趣,然后就搜了搜,翻了翻. 语法:FIND_IN_SET(str,strlist) 定义: 1. ...
- Python——组图Canvas控制参数
一.参数说明 background(bg) : 背景色; foreground(fg): 前景色; borderwidth :组件边框宽度: width : 组件宽度: height : 高度; ...
- 【python练习题】程序10
#10.题目:暂停一秒输出,并格式化当前时间. import time print(time.time())#timestamp print(time.localtime(time.time()))# ...
- 最简单的socket服务器与客户端
服务器: //服务器 #include <stdio.h> #include <netinet/in.h> #include <unistd.h> #include ...
- css溢出显示省略号
单行溢出省略号 .show-detail li .info-name { width:278px; display:inline-block; /*下面是重点*/ overflow: hidden; ...
- Oracle查看表空间,创建表空间
查看表空间: SELECT tablespace_name, file_id, file_name, round(bytes / (1024 * 1024), 0) total_space FROM ...
- Codeforces551 C. GukiZ hates Boxes
二分答案 + 贪心 传送门:$>here<$ $Solution$ 二分时间+贪心验证.思维难度主要在验证上,然而坑人的点却在n的取值上.那么先来谈如何验证.在已知时间的条件下,能否用一种 ...