english-07 Shortest Path
描述
There is a graph with N nodes. Given the length of each edge between the nodes. Find the shortest path from S to E.
输入
First line: three positive integer number N (N <= 100), S (S <= N), E(E <= N).Next N lines: the i-th line contains N non-negative integers (<= 100), indicating the length of edge from the i-th node to any nodes.
输出
One line contains several integers, indicating the indexes of node in the shortest path from S to E.
样例输入
1
2
3
4
54 1 4
0 3 6 8
3 0 2 9
6 2 0 2
8 9 2 0
样例输出
限制