Shortest Path
Given a graph as an adjacency matrix, find the shortest path from the first to the last vertex.Input
N ≤ 100, the number of vertices.The adjacency matrix - N rows of N numbers.
The first row represents the first vertex, and similarly the last row = the last vertex.
Output
The distance from the first vertex to the last one.Sample Input
3 0 1 0 0 0 1 0 0 0
Sample Output
2
All Submissions
Best Solutions
Point Value: 5
Time Limit: 2.00s
Memory Limit: 16M
Added: Jun 28, 2013
Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3
Comments (Search)
http://wcipeg.com/wiki/Graph_theory#Adjacency_matrix