注:搬运自我的csdn博客 http://blog.csdn.net/qq_30172585
题目如下:
Description
At present, Zhongshan University has 4 campuses with a total area of 6.17 square kilometers sitting respectively on both sides of the Pearl River or facing the South China Sea. The Guangzhou South Campus covers an area of 1.17 square kilometers, the North Campus covers an area of 0.39 square kilometers, the Guangzhou East Campus has an area of 1.13 square kilometers and the Zhuhai Campus covers an area of 3.48 square kilometers. All campuses have exuberance of green trees, abundance of lawns and beautiful sceneries, and are ideal for molding the temperaments, studying and doing research.
Sometime, the professors and students have to go from one place to another place in one campus or between campuses. They want to find the shortest path between their source place S and target place T. Can you help them?
Input
The first line of the input is a positive integer C. C is the number of test cases followed. In each test case, the first line is a positive integer N (0< N <=100) that represents the number of roads. After that, N lines follow. The i-th(1<=i<=N) line contains two strings Si, Ti and one integer Di (0<=Di<=100). It means that there is a road whose length is Di between Si and Ti. Finally, there are two strings S and T, you have to find the shortest path between S and T. S, T, Si(1<=i<=N) and Ti(1<=i<=N) are all given in the following format: str_Campus.str_Place. str_Campus represents the name of the campus, and str_Place represents the place in str_Campus. str_Campus is "North", "South", "East" or "Zhuhai". str_Place is a string which has less than one hundred lowercase characters from "a-z". You can assume that there is at most one road directly between any two places.
Output
The output of the program should consist of C lines, one line for each test case. For each test case, the output is a single line containing one integer. If there is a path between S and T, output the length of the shortest path between them. Otherwise just output "-1" (without quotation mark). No redundant spaces are needed.
分析:
A. 就是单源最短路径问题,这个很明显,可以选用Dijkstra算法求解
B. 数据规模0< N <=100,最多只有100*2 = 200 个顶点,数据量较小,可以用较为简单的邻接矩阵
C. 输入中给出的顶点是字符串,需要转化为对应的数字才能用邻接矩阵,此时可以用map< string,int >进行映射
D. 此题有坑——最后让你求的那两点可能与其他点都无路径相同,具体参看代码输出部分的判断语句
另附几个链接:
Dijkstra算法讲解
单源最短路径的动态演示
代码如下
#include
#include
#include
#include
#include
#include
#include