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 ...
随机推荐
- 《笔记》Apache2 mod_wsgi的配置
接手了一台古老的服务器的还使用的是mod_wsgi,所以需要配置一下.其实这里有点怀念,记得当年自己折腾第一个app的时候,还是个什么都不懂的菜鸡.当时用django搜方案的时候,还不知道有uwsgi ...
- python3 阿里云控制SLB权重
一.配置好RAM账号的权限(SLB管理权限) 二.安装依赖 pip3 install aliyun-python-sdk-slb pip3 install aliyun-python-sdk-core ...
- dw擴展jquery
https://jingyan.baidu.com/article/90895e0fbbb65764ec6b0bd1.html
- epoch、 iteration和batchsize区别
转自: https://blog.csdn.net/qq_27923041/article/details/74927398 深度学习中经常看到epoch. iteration和batchsize,下 ...
- Hibernate 配置文件hibernate.cfg.xml的详细
<!--标准的XML文件的起始行,version='1.0'表明XML的版本,encoding='gb2312'表明XML文件的编码方式--> <?xml ...
- vue axios 封装(二)
封装二: http.js import axios from 'axios' import storeHelper from './localstorageHelper' // 全局设置 const ...
- 【数学建模】day11-典型相关分析
这与主成分分析有点相似. 0. 基本思想主成分分析(PCA)是把原始有相关性变量,线性组合出无关的变量(投影),以利用主成分变量进行更加有效的分析.而典型相关分析(CCA)的思想是: 分析自变量组 X ...
- kubernetes 编排详解 资源分配
########给pod 分配cpu和内存资源apiVersion: v1 kind: Pod metadata: name: frontend spec: containers: - name: d ...
- [UOJ86]mx的组合数——NTT+数位DP+原根与指标+卢卡斯定理
题目链接: [UOJ86]mx的组合数 题目大意:给出四个数$p,n,l,r$,对于$\forall 0\le a\le p-1$,求$l\le x\le r,C_{x}^{n}\%p=a$的$x$的 ...
- UESTC1013-我的魔法栈-模拟/排列组合
有一个串,有黑色和白色两种元素.一次操作可以把最上面的白色元素变成黑色,同时把这个元素上面的所有元素变成白色. 给你一个30以内的串,计算变成全黑时,元素变化的总和. 我用的方法比较笨,打表处理了1- ...