【PAT】1111. Online Map (30)【dijkstra算法】

2024-04-12 06:08

本文主要是介绍【PAT】1111. Online Map (30)【dijkstra算法】,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目描述

Input our current position and a destination, an online map can recommend several paths. Now your job is to recommend two paths to your user: one is the shortest, and the other is the fastest. It is guaranteed that a path exists for any request.

翻译:输入我们当前的位置和目的地,一个在线地图可以推荐几个路径。现在您的任务是向用户推荐两条路径:一条是最短的,另一条是最快的。数据保证任何请求都存在一条路径。

Input Specification:

Each input file contains one test case. For each case, the first line gives two positive integers N (2≤N≤500), and M, being the total number of streets intersections on a map, and the number of streets, respectively. Then M lines follow, each describes a street in the format:

V1 V2 one-way length time
where V1 and V2 are the indices (from 0 to N−1) of the two ends of the street; one-way is 1 if the street is one-way from V1 to V2, or 0 if not; length is the length of the street; and time is the time taken to pass the street.

Finally a pair of source and destination is given.

翻译:每个输入文件包含一组测试数据。对于每组输入数据,第一行包括两个正整数N(2≤N≤500), 和M,分别表示代表地图上道路的交叉点的总数量和道路数量。接下来M行,每行按照以下格式描述一条道路:
V1 V2 one-way length time
V1和V2是道路的两个末端索引(从0到N-1),one-way如果为1代表是从v1到v2的单行道,0则不是。length代表的是街道的长度;time代表通过这条街道所需的试卷。
最后给出一对起点和终点。

Output Specification:

For each case, first print the shortest path from the source to the destination with distance D in the format:

Distance = D: source -> v1 -> … -> destination
Then in the next line print the fastest path with total time T:

Time = T: source -> w1 -> … -> destination
In case the shortest path is not unique, output the fastest one among the shortest paths, which is guaranteed to be unique. In case the fastest path is not unique, output the one that passes through the fewest intersections, which is guaranteed to be unique.

In case the shortest and the fastest paths are identical, print them in one line in the format:

Distance = D; Time = T: source -> u1 -> … -> destination

翻译:对于每组输入数据,第一行按照以下格式输出从起点到终点的最短路及其长度D:
Distance = D: source -> v1 -> … -> destination

接下来一行输出最快的路及其时间T:
Time = T: source -> w1 -> … -> destination

万一最短路不唯一,输出最短路中最快的那一条,数据保证结果唯一。万一最快的路不唯一,输出经过的交叉点最少的那一条,数据保证结果唯一。
万一最短路和最快的路相同,按照以下格式输出一行:
Distance = D; Time = T: source -> u1 -> … -> destination


Sample Input 1:

10 15
0 1 0 1 1
8 0 0 1 1
4 8 1 1 1
3 4 0 3 2
3 9 1 4 1
0 6 0 1 1
7 5 1 2 1
8 5 1 2 1
2 3 0 2 2
2 1 1 1 1
1 3 0 3 1
1 4 0 1 1
9 7 1 3 1
5 1 0 5 2
6 5 1 1 2
3 5


Sample Output 1:

Distance = 6: 3 -> 4 -> 8 -> 5
Time = 3: 3 -> 1 -> 5


Sample Input 2:

7 9
0 4 1 1 1
1 6 1 1 3
2 6 1 1 1
2 5 1 2 2
3 0 0 1 1
3 1 1 1 3
3 2 1 1 2
4 5 0 2 2
6 5 1 1 2
3 5


Sample Output 2:

Distance = 3; Time = 4: 3 -> 2 -> 5


解题思路

用dijkstra方法搜索两遍即可,注意最短路节点要保存路程和时间,最快路节点要保存时间和经过的节点数,最后判断一下两条路径是否重合。这道题条件比较多,所以有些繁琐,需要仔细思考。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<string>
#include<vector>
#include<queue>
#include<algorithm>
#define INF 99999999
using namespace std;
int N,M;
int d[510][2],Lpre[510],Tpre[510],Lmin,Tmin;
int Lans[510],Tans[510],lcount=1,tcount=1;
int start,destination;
struct Edge{int nodes,time,to;Edge(int a,int b,int c):nodes(a),time(b),to(c){}bool operator<(const Edge tmp)const{if(time==tmp.time) return nodes>tmp.nodes;return time>tmp.time;}
};
struct LengthEdge{int length,time,to;LengthEdge(int a,int b,int c):length(a),time(b),to(c){}bool operator<(const LengthEdge tmp)const{if(length==tmp.length) return time>tmp.time;else  return length>tmp.length;}
};
vector<LengthEdge> L[510];void Tdijkstra(int s){priority_queue<Edge> q;for(int i=0;i<N;i++){d[i][0]=d[i][1]=INF;Tpre[i]=-1;}d[s][0]=d[s][1]=0;q.push(Edge(0,0,s));while(!q.empty()){Edge temp=q.top();q.pop();int v=temp.to;if(d[v][0]<temp.time)continue;for(int i=0;i<L[v].size();i++){LengthEdge e=L[v][i];if(d[e.to][0]>d[v][0]+e.time){d[e.to][0]=d[v][0]+e.time;Tpre[e.to]=v;d[e.to][1]=d[v][1]+1;q.push(Edge(d[e.to][1],d[e.to][0],e.to));}else if(d[e.to][0]==d[v][0]+e.time){if(d[e.to][1]>d[v][1]+1){Tpre[e.to]=v;d[e.to][1]=d[v][1]+1;q.push(Edge(d[e.to][1],d[e.to][0],e.to));}}}}Tmin=d[destination][0];
}
void Ldijkstra(int s){priority_queue<LengthEdge> q;for(int i=0;i<N;i++){d[i][0]=d[i][1]=INF;Lpre[i]=-1;}d[s][0]=d[s][1]=0;q.push(LengthEdge(0,0,s));while(!q.empty()){LengthEdge temp=q.top();q.pop();int v=temp.to;if(d[v][0]<temp.length)continue;for(int i=0;i<L[v].size();i++){LengthEdge e=L[v][i];if(d[e.to][0]>d[v][0]+e.length){d[e.to][0]=d[v][0]+e.length;Lpre[e.to]=v;d[e.to][1]=d[v][1]+e.time;q.push(LengthEdge(d[e.to][0],d[e.to][1],e.to));}else if(d[e.to][0]==d[v][0]+e.length){if(d[e.to][1]>d[v][1]+e.time){d[e.to][0]=d[v][0]+e.length;Lpre[e.to]=v;d[e.to][1]=d[v][1]+e.time;q.push(LengthEdge(d[e.to][0],d[e.to][1],e.to));}}}}Lmin=d[destination][0];
}
void LgetPath(){int temp=Lans[0]=destination;lcount=1;while(Lpre[temp]!=-1){Lans[lcount++]=Lpre[temp];temp=Lpre[temp];}
}
void TgetPath(){int temp=Tans[0]=destination;tcount=1;while(Tpre[temp]!=-1){Tans[tcount++]=Tpre[temp];temp=Tpre[temp];}
}
void print(){int i;for(i=0;i<tcount;i++){if(Tans[i]!=Lans[i])break;}if(i==tcount){printf("Distance = %d; Time = %d: %d",Lmin,Tmin,start);for(i=tcount-2;i>=0;i--){printf(" -> %d",Lans[i]);}printf("\n");}else{printf("Distance = %d: %d",Lmin,start);for(i=lcount-2;i>=0;i--){printf(" -> %d",Lans[i]);}printf("\n");printf("Time = %d: %d",Tmin,start);for(i=tcount-2;i>=0;i--){printf(" -> %d",Tans[i]);}printf("\n");		}
}
int main(){scanf("%d%d",&N,&M);int a,b,c,d,e;for(int i=0;i<M;i++){scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);L[a].push_back(LengthEdge(d,e,b));if(c!=1){L[b].push_back(LengthEdge(d,e,a));}}scanf("%d%d",&start,&destination);Ldijkstra(start);Tdijkstra(start);LgetPath();TgetPath();print();return 0;
}

这篇关于【PAT】1111. Online Map (30)【dijkstra算法】的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/896311

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

康拓展开(hash算法中会用到)

康拓展开是一个全排列到一个自然数的双射(也就是某个全排列与某个自然数一一对应) 公式: X=a[n]*(n-1)!+a[n-1]*(n-2)!+...+a[i]*(i-1)!+...+a[1]*0! 其中,a[i]为整数,并且0<=a[i]<i,1<=i<=n。(a[i]在不同应用中的含义不同); 典型应用: 计算当前排列在所有由小到大全排列中的顺序,也就是说求当前排列是第

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

综合安防管理平台LntonAIServer视频监控汇聚抖动检测算法优势

LntonAIServer视频质量诊断功能中的抖动检测是一个专门针对视频稳定性进行分析的功能。抖动通常是指视频帧之间的不必要运动,这种运动可能是由于摄像机的移动、传输中的错误或编解码问题导致的。抖动检测对于确保视频内容的平滑性和观看体验至关重要。 优势 1. 提高图像质量 - 清晰度提升:减少抖动,提高图像的清晰度和细节表现力,使得监控画面更加真实可信。 - 细节增强:在低光条件下,抖

【数据结构】——原来排序算法搞懂这些就行,轻松拿捏

前言:快速排序的实现最重要的是找基准值,下面让我们来了解如何实现找基准值 基准值的注释:在快排的过程中,每一次我们要取一个元素作为枢纽值,以这个数字来将序列划分为两部分。 在此我们采用三数取中法,也就是取左端、中间、右端三个数,然后进行排序,将中间数作为枢纽值。 快速排序实现主框架: //快速排序 void QuickSort(int* arr, int left, int rig

30常用 Maven 命令

Maven 是一个强大的项目管理和构建工具,它广泛用于 Java 项目的依赖管理、构建流程和插件集成。Maven 的命令行工具提供了大量的命令来帮助开发人员管理项目的生命周期、依赖和插件。以下是 常用 Maven 命令的使用场景及其详细解释。 1. mvn clean 使用场景:清理项目的生成目录,通常用于删除项目中自动生成的文件(如 target/ 目录)。共性规律:清理操作

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

poj 1502 MPI Maelstrom(单源最短路dijkstra)

题目真是长得头疼,好多生词,给跪。 没啥好说的,英语大水逼。 借助字典尝试翻译了一下,水逼直译求不喷 Description: BIT他们的超级计算机最近交货了。(定语秀了一堆词汇那就省略吧再见) Valentine McKee的研究顾问Jack Swigert,要她来测试一下这个系统。 Valentine告诉Swigert:“因为阿波罗是一个分布式共享内存的机器,所以它的内存访问

秋招最新大模型算法面试,熬夜都要肝完它

💥大家在面试大模型LLM这个板块的时候,不知道面试完会不会复盘、总结,做笔记的习惯,这份大模型算法岗面试八股笔记也帮助不少人拿到过offer ✨对于面试大模型算法工程师会有一定的帮助,都附有完整答案,熬夜也要看完,祝大家一臂之力 这份《大模型算法工程师面试题》已经上传CSDN,还有完整版的大模型 AI 学习资料,朋友们如果需要可以微信扫描下方CSDN官方认证二维码免费领取【保证100%免费

uva 10801(乘电梯dijkstra)

题意: 给几个电梯,电梯0 ~ n-1分别可以到达很多层楼。 换乘电梯需要60s时间。 问从0层到target层最小的时间。 解析: 将进入第0层的电梯60s也算上,最后减。 坑点是如果target为0输出0。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algori