You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
809 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// https://en.wikipedia.org/wiki/FordFulkerson_algorithm in O(V^2 * flow)
public class MaxFlowFordFulkersonSimple {
public static int maxFlow(int[][] cap, int s, int t) {
for (int flow = 0; ; ++flow)
if (!augmentPath(cap, new boolean[cap.length], s, t))
return flow;
}
static boolean augmentPath(int[][] cap, boolean[] vis, int i, int t) {
if (i == t)
return true;
vis[i] = true;
for (int j = 0; j < vis.length; j++)
if (!vis[j] && cap[i][j] > 0 && augmentPath(cap, vis, j, t)) {
--cap[i][j];
++cap[j][i];
return true;
}
return false;
}
// Usage example
public static void main(String[] args) {
int[][] capacity = {{0, 1, 1, 0}, {1, 0, 1, 1}, {1, 1, 0, 1}, {0, 1, 1, 0}};
System.out.println(2 == maxFlow(capacity, 0, 3));
}
}