-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBellmanFord.cpp
More file actions
40 lines (32 loc) · 1.04 KB
/
BellmanFord.cpp
File metadata and controls
40 lines (32 loc) · 1.04 KB
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
const ll INF = 1e18;
struct Edge { int u, v; ll w; };
// Bellman Ford algorithm, and check for negative edges. O(N * M).
bool bellman_ford(vector<Edge> const& edges, vector<ll>& d, int n) {
d.assign(n, INF);
d[0] = 0;
for (int it = 0; it < n; it++) {
for (Edge const& ed : edges) {
int u = ed.u, v = ed.v; ll w = ed.w;
if (d[u] < INF && d[v] > d[u] + w) {
d[v] = max(-INF, d[u] + w);
}
}
}
// If it's possible to relax some edge, there is a negative cycle;
// you can ignore the following code if it isn't necessary to deal with negative edges
// negative[i] is true if there is a negative cycle in path 0..i
vector<bool> negative(n);
for (int it = 0; it < n; it++) {
for (Edge const& ed : edges) {
int u = ed.u, v = ed.v; ll w = ed.w;
if (d[u] == INF) continue;
if (d[v] > d[u] + w) {
d[v] = d[u] + w;
negative[v] = true;
}
if (negative[u]) negative[v] = true;
}
}
// do something with negative edges here
return negative[n - 1]; // in this case I return if there is a negative cycle from 0 to n - 1
}