-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedmonds-karp.cpp
86 lines (77 loc) · 2.67 KB
/
edmonds-karp.cpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <bits/stdc++.h>
#define input freopen("in.txt", "r", stdin)
#define output freopen("out.txt", "w", stdout)
using namespace std;
#define MAX_N 101 // Tarea
int grafo[MAX_N][MAX_N]; // capacidad + flujo
int path[MAX_N]; // camino b: b <- a
// path 0->3->2->4
// [0,-1,3,0,2,-1, 4]
// 0 1 2 3 4, 5, 6
// Edmonds Karp
// DINIC
int maxFlow(int s,int t) {
// s nodo inicial
// t nodo final
int maxFlow = 0;
while(true) { /// nunca sabemos si no tenemos flujo
//BFS O(V+E)
memset(path, -1, sizeof(path)); // no los estamos visitando
queue<int> Q;
Q.push(s);
path[s] = s; // s-
while(!Q.empty() && path[t]==-1) {
int currentNode = Q.front();
Q.pop();
for(int i = 0 ; i < MAX_N ; i++) {
if(grafo[currentNode][i] > 0 && path[i]==-1) { // puedo visitar?
path[i] = currentNode; // guardar camino
Q.push(i); // agregar a la cola
}
}
}
if(path[t]==-1) { // si llego a t el path tiene que ser diferente a -1
break;
}
int minFlow = 1e9; // infinito
for(int from = path[t],to = t; from!=to ; from = path[to = from]) {
minFlow = min(minFlow,grafo[from][to]); // grafo[from][to] capacidades de las aristas
}
// V - 1 //
// Sumar al grafo residual y restar al grafo de capacidad ese minimo // sumar todos os diferentes a -1
for(int from = path[t],to = t; from!=to ; from = path[to = from]) {
grafo[from][to] -= minFlow; // grafo de capacidad
grafo[to][from] += minFlow; // grafo residual
}
// s = 0 , t = 6
// 0 -> 1 -> 3 -> 5 -> 6
// path[] = {0,0,0,1,0,3,5,0,0,0}
// 0 1 2 3 4 5 6 7 8 9
// from = 0
// to = 0
//from = path[to = from]
//from = path[0]
maxFlow += minFlow;
// 2V+E-1
}
// flujos * 2V+E-1
// flujos *2V + flujos*E - flujos
// flujos*E E^2
return maxFlow;
}
int main() {
input;
int nodes, aristas, nroCases = 1;
while(cin>>nodes && nodes) {
int s,t; // s = fuente o source t = terminal
cin>>s>>t>>aristas;
memset(grafo,0,sizeof(grafo));
for(int i=0;i<aristas;i++) {
int from, to, capacity;
cin>>from>>to>>capacity;
grafo[from][to] = capacity; // camino capacidad
grafo[to][from] = 0; // flujo camino residual
}
cout<<maxFlow(s,t)<<endl;
}
}