2019-11-19 21:52:55 +00:00
|
|
|
from typing import Dict, List
|
|
|
|
|
|
|
|
|
2018-10-19 12:48:28 +00:00
|
|
|
def printDist(dist, V):
|
2019-11-19 21:52:55 +00:00
|
|
|
print("Vertex Distance")
|
|
|
|
distances = ("INF" if d == float("inf") else d for d in dist)
|
|
|
|
print("\t".join(f"{i}\t{d}" for i, d in enumerate(distances)))
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-07-17 04:07:25 +00:00
|
|
|
|
2019-11-19 21:52:55 +00:00
|
|
|
def BellmanFord(graph: List[Dict[str, int]], V: int, E: int, src: int) -> int:
|
2020-03-04 12:40:28 +00:00
|
|
|
"""
|
2019-11-19 21:52:55 +00:00
|
|
|
Returns shortest paths from a vertex src to all
|
|
|
|
other vertices.
|
|
|
|
"""
|
2019-10-05 05:14:13 +00:00
|
|
|
mdist = [float("inf") for i in range(V)]
|
|
|
|
mdist[src] = 0.0
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
for i in range(V - 1):
|
2019-11-10 09:01:38 +00:00
|
|
|
for j in range(E):
|
2019-10-05 05:14:13 +00:00
|
|
|
u = graph[j]["src"]
|
|
|
|
v = graph[j]["dst"]
|
|
|
|
w = graph[j]["weight"]
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if mdist[u] != float("inf") and mdist[u] + w < mdist[v]:
|
|
|
|
mdist[v] = mdist[u] + w
|
2019-11-10 09:01:38 +00:00
|
|
|
for j in range(E):
|
2019-10-05 05:14:13 +00:00
|
|
|
u = graph[j]["src"]
|
|
|
|
v = graph[j]["dst"]
|
|
|
|
w = graph[j]["weight"]
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if mdist[u] != float("inf") and mdist[u] + w < mdist[v]:
|
|
|
|
print("Negative cycle found. Solution not possible.")
|
|
|
|
return
|
2019-07-17 04:07:25 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
printDist(mdist, V)
|
2019-11-19 21:52:55 +00:00
|
|
|
return src
|
2019-07-17 04:07:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
V = int(input("Enter number of vertices: ").strip())
|
|
|
|
E = int(input("Enter number of edges: ").strip())
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-07-17 04:07:25 +00:00
|
|
|
graph = [dict() for j in range(E)]
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-11-19 21:52:55 +00:00
|
|
|
for i in range(E):
|
2019-10-05 05:14:13 +00:00
|
|
|
graph[i][i] = 0.0
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-07-17 04:07:25 +00:00
|
|
|
for i in range(E):
|
2019-10-05 05:14:13 +00:00
|
|
|
print("\nEdge ", i + 1)
|
|
|
|
src = int(input("Enter source:").strip())
|
|
|
|
dst = int(input("Enter destination:").strip())
|
|
|
|
weight = float(input("Enter weight:").strip())
|
|
|
|
graph[i] = {"src": src, "dst": dst, "weight": weight}
|
2018-10-19 12:48:28 +00:00
|
|
|
|
2019-07-17 04:07:25 +00:00
|
|
|
gsrc = int(input("\nEnter shortest path source:").strip())
|
|
|
|
BellmanFord(graph, V, E, gsrc)
|