-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathnegative_cycle.py
46 lines (38 loc) · 1.11 KB
/
negative_cycle.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Uses python3
import sys
def negative_cycle(adj, cost):
vertices = len(adj)
dist = [9223372036854775807] * vertices
dist[0] = 0
for _ in range(vertices - 1):
for u in range(vertices):
i = 0 # magic variable
for v in adj[u]:
weight = dist[u] + cost[u][i]
if dist[v] > weight:
dist[v] = weight
else:
i += 1
for u in range(vertices):
i = 0
for v in adj[u]:
weight = dist[u] + cost[u][i]
if dist[v] > weight:
return 1
else:
i += 1
return 0
if __name__ == '__main__':
user_input = sys.stdin.read()
data = list(map(int, user_input.split()))
n, m = data[0:2]
data = data[2:]
edges = list(
zip(zip(data[0:(3 * m):3], data[1:(3 * m):3]), data[2:(3 * m):3]))
data = data[3 * m:]
adj = [[] for _ in range(n)]
cost = [[] for _ in range(n)]
for ((a, b), w) in edges:
adj[a - 1].append(b - 1)
cost[a - 1].append(w)
print(negative_cycle(adj, cost))