Maximum flow problem


In optimization theory, maximum flow problems involve finding a feasible flow through a flow network that obtains the maximum possible flow rate.
The maximum flow problem can be seen as a special case of more complex network flow problems, such as the circulation problem. The maximum value of an s-t flow is equal to the minimum capacity of an s-t cut in the network, as stated in the max-flow min-cut theorem.

History

The maximum flow problem was first formulated in 1954 by T. E. Harris and F. S. Ross as a simplified model of Soviet railway traffic flow.
In 1955, Lester R. Ford, Jr. and Delbert R. Fulkerson created the first known algorithm, the Ford–Fulkerson algorithm. In their 1955 paper, Ford and Fulkerson wrote that the problem of Harris and Ross is formulated as follows :
Consider a rail network connecting two cities by way of a number of intermediate cities, where each link of the network has a number assigned to it representing its capacity. Assuming a steady state condition, find a maximal flow from one given city to the other.
In their book Flows in Network, in 1962, Ford and Fulkerson wrote:
It was posed to the authors in the spring of 1955 by T.E. Harris, who, in conjunction with General F.S. Ross, had formulated a simplified model of railway traffic flow, and pinpointed this particular problem as the central one suggested by the model .
where refers to the 1955 secret report Fundamentals of a Method for Evaluating Rail net Capacities by Harris and Ross.
Over the years, various improved solutions to the maximum flow problem were discovered, notably the shortest augmenting path algorithm of Edmonds and Karp and independently Dinitz; the blocking flow algorithm of Dinitz; the push-relabel algorithm of Goldberg and Tarjan; and the binary blocking flow algorithm of Goldberg and Rao. The algorithms of Sherman and Kelner, Lee, Orecchia and Sidford, respectively, find an approximately optimal maximum flow but only work in undirected graphs.
In 2013 James B. Orlin published a paper describing an algorithm for all values of and.

Definition

First we establish some notation:
Definition. The capacity of an edge is the maximum amount of flow that can pass through an edge. Formally it is a map
Definition. A flow is a map that satisfies the following:
Remark. Flows are skew symmetric: for all
Definition. The value of flow is the amount of flow passing from the source to the sink. Formally for a flow it is given by:
Definition. The maximum flow problem is to route as much flow as possible from the source to the sink, in other words find the flow with maximum value.

Solutions

The following table lists algorithms for solving the maximum flow problem.
MethodComplexityDescription
Linear programmingConstraints given by the definition of a legal flow. See the linear program here.
Ford–Fulkerson algorithmAs long as there is an open path through the residual graph, send the minimum of the residual capacities on the path.
The algorithm is only guaranteed to terminate if all weights are rational. Otherwise it is possible that the algorithm will not converge to the maximum value. However, if the algorithm terminates, it is guaranteed to find the maximum value.
Edmonds–Karp algorithmA specialization of Ford–Fulkerson, finding augmenting paths with breadth-first search.
Dinic's blocking flow algorithmIn each phase the algorithms builds a layered graph with breadth-first search on the residual graph. The maximum flow in a layered graph can be calculated in time, and the maximum number of the phases is. In networks with unit capacities, Dinic's algorithm terminates in time.
MPM algorithmOnly works on acyclic networks. Refer to the .
Dinic's algorithmThe dynamic trees data structure speeds up the maximum flow computation in the layered graph to.
General push-relabel maximum flow algorithmThe push relabel algorithm maintains a preflow, i.e. a flow function with the possibility of excess in the vertices. The algorithm runs while there is a vertex with positive excess, i.e. an active vertex in the graph. The push operation increases the flow on a residual edge, and a height function on the vertices controls which residual edges can be pushed. The height function is changed with a relabel operation. The proper definitions of these operations guarantee that the resulting flow function is a maximum flow.
Push-relabel algorithm with FIFO vertex selection rulePush-relabel algorithm variant which always selects the most recently active vertex, and performs push operations until the excess is positive or there are admissible residual edges from this vertex.
Push-relabel algorithm with dynamic treesThe algorithm builds limited size trees on the residual graph regarding to height function. These trees provide multilevel push operations.
KRT 's algorithm
Binary blocking flow algorithmThe value U corresponds to the maximum capacity of the network.
James B Orlin's + KRT 's algorithm solves max-flow in time for while KRT solves it in for.

For a more extensive list, see.

Integral flow theorem

The integral flow theorem states that

Application

Multi-source multi-sink maximum flow problem

Given a network with a set of sources and a set of sinks instead of only one source and one sink, we are to find the maximum flow across. We can transform the multi-source multi-sink problem into a maximum flow problem by adding a consolidated source connecting to each vertex in and a consolidated sink connected by each vertex in with infinite capacity on each edge.

Minimum path cover in directed acyclic graph

Given a directed acyclic graph, we are to find the minimum number of vertex-disjoint paths to cover each vertex in. We can construct a bipartite graph from, where
  1. .
  2. .
  3. .
Then it can be shown, via Kőnig's theorem, that has a matching of size if and only if there exists vertex-disjoint paths that cover each vertex in, where is the number of vertices in. Therefore, the problem can be solved by finding the maximum cardinality matching in instead.

Maximum cardinality bipartite matching

Given a bipartite graph, we are to find a maximum cardinality matching in, that is a matching that contains the largest possible number of edges. This problem can be transformed into a maximum flow problem by constructing a network, where
  1. contains the edges in directed from to.
  2. for each and for each.
  3. for each .
Then the value of the maximum flow in is equal to the size of the maximum matching in.

Maximum flow with vertex capacities

Let be a network. Suppose there is capacity at each node in addition to edge capacity, that is, a mapping such that the flow has to satisfy not only the capacity constraint and the conservation of flows, but also the vertex capacity constraint
In other words, the amount of flow passing through a vertex cannot exceed its capacity. To find the maximum flow across, we can transform the problem into the maximum flow problem in the original sense by expanding. First, each is replaced by and, where is connected by edges going into and is connected to edges coming out from, then assign capacity to the edge connecting and . In this expanded network, the vertex capacity constraint is removed and therefore the problem can be treated as the original maximum flow problem.

Maximum number of paths from s to t

Given a directed graph and two vertices and, we are to find the maximum number of paths from to. This problem has several variants:
1. The paths must be edge-disjoint. This problem can be transformed to a maximum flow problem by constructing a network from, with and being the source and the sink of respectively, and assigning each edge a capacity of. In this network, the maximum flow is iff there are edge-disjoint paths.
2. The paths must be independent, i.e., vertex-disjoint. We can construct a network from with vertex capacities, where the capacities of all vertices and all edges are. Then the value of the maximum flow is equal to the maximum number of independent paths from to.
3. In addition to the paths being edge-disjoint and/or vertex disjoint, the paths also have a length constraint: we count only paths whose length is exactly, or at most. Most variants of this problem are NP-complete, except for small values of.

Closure problem

A closure of a directed graph is a set of vertices with no outgoing edges. That is, the graph should have no edges that start within the closure and end outside the closure. The closure problem is the task of finding the maximum-weight or minimum-weight closure in a vertex-weighted directed graph. It may be solved in polynomial time using a reduction to the maximum flow problem.

Real world applications

Baseball elimination

In the baseball elimination problem there are n teams competing in a league. At a specific stage of the league season, wi is the number of wins and ri is the number of games left to play for team i and rij is the number of games left against team j. A team is eliminated if it has no chance to finish the season in the first place. The task of the baseball elimination problem is to determine which teams are eliminated at each point during the season. Schwartz proposed a method which reduces this problem to maximum network flow. In this method a network is created to determine whether team k is eliminated.
Let G = be a network with s,tV being the source and the sink respectively. One adds a game node with i < j to V, and connects each of them from s by an edge with capacity rij – which represents the number of plays between these two teams. We also add a team node for each team and connect each game node with two team nodes i and j to ensure one of them wins. One does not need to restrict the flow value on these edges. Finally, edges are made from team node i to the sink node t and the capacity of wk+rkwi is set to prevent team i from winning more than wk+rk.
Let S be the set of all teams participating in the league and let. In this method it is claimed team k is not eliminated if and only if a flow value of size r exists in network G. In the mentioned article it is proved that this flow value is the maximum flow value from s to t.

Airline scheduling

In the airline industry a major problem is the scheduling of the flight crews. The airline scheduling problem can be considered as an application of extended maximum network flow. The input of this problem is a set of flights F which contains the information about where and when each flight departs and arrives. In one version of airline scheduling the goal is to produce a feasible schedule with at most k crews.
In order to solve this problem one uses a variation of the circulation problem called bounded circulation which is the generalization of network flow problems, with the added constraint of a lower bound on edge flows.
Let G = be a network with s,tV as the source and the sink nodes. For the source and destination of every flight i, one adds two nodes to V, node si as the source and node di as the destination node of flight i. One also adds the following edges to E:
  1. An edge with capacity between s and each si.
  2. An edge with capacity between each di and t.
  3. An edge with capacity between each pair of si and di.
  4. An edge with capacity between each di and sj, if source sj is reachable with a reasonable amount of time and cost from the destination of flight i.
  5. An edge with capacity between s and t.
In the mentioned method, it is claimed and proved that finding a flow value of k in G between s and t is equal to finding a feasible schedule for flight set F with at most k crews.
Another version of airline scheduling is finding the minimum needed crews to perform all the flights. In order to find an answer to this problem, a bipartite graph is created where each flight has a copy in set A and set B. If the same plane can perform flight j after flight i, iA is connected to jB. A matching in induces a schedule for F and obviously maximum bipartite matching in this graph produces an airline schedule with minimum number of crews. As it is mentioned in the Application part of this article, the maximum cardinality bipartite matching is an application of maximum flow problem.

Circulation–demand problem

There are some factories that produce goods and some villages where the goods have to be delivered. They are connected by a networks of roads with each road having a capacity for maximum goods that can flow through it. The problem is to find if there is a circulation that satisfies the demand.
This problem can be transformed into a maximum-flow problem.
  1. Add a source node and add edges from it to every factory node with capacity where is the production rate of factory.
  2. Add a sink node and add edges from all villages to with capacity where is the demand rate of village.
Let G = be this new network. There exists a circulation that satisfies the demand if and only if :
If there exists a circulation, looking at the max-flow solution would give the answer as to how much goods have to be sent on a particular road for satisfying the demands.
The problem can be extended by adding a lower bound on the flow on some edges.

Image segmentation

In their book, Kleinberg and Tardos present an algorithm for segmenting an image. They present an algorithm to find the background and the foreground in an image. More precisely, the algorithm takes a bitmap as an input modelled as follows: ai ≥ 0 is the likelihood that pixel i belongs to the foreground, bi ≥ 0 in the likelihood that pixel i belongs to the background, and pij is the penalty if two adjacent pixels i and j are placed one in the foreground and the other in the background. The goal is to find a partition of the set of pixels that maximize the following quantity
Indeed, for pixels in A, we gain ai; for all pixels in B, we gain bi. On the border, between two adjacent pixels i and j, we loose pij. It is equivalent to minimize the quantity
because
We now construct the network whose nodes are the pixel, plus a source and a sink, see Figure on the right. We connect the source to pixel i by an edge of weight ai. We connect the pixel i to the sink by an edge of weight bi. We connect pixel i to pixel j with weight pij. Now, it remains to compute a minimum cut in that network. The last figure shows a minimum cut.

Extensions

1. In the minimum-cost flow problem, each edge also has a cost-coefficient auv in addition to its capacity. If the flow through the edge is fuv, then the total cost is auvfuv. It is required to find a flow of a given size d, with the smallest cost. In most variants, the cost-coefficients may be either positive or negative. There are various polynomial-time algorithms for this problem.
2. The maximum-flow problem can be augmented by disjunctive constraints: a negative disjunctive constraint says that a certain pair of edges cannot simultaneously have a nonzero flow; a positive disjunctive constraints says that, in a certain pair of edges, at least one must have a nonzero flow. With negative constraints, the problem becomes strongly NP-hard even for simple networks. With positive constraints, the problem is polynomial if fractional flows are allowed, but may be strongly NP-hard when the flows must be integral.