Minimum cost flow problem
From Wikipedia, the free encyclopedia
The minimum cost flow problem is finding the cheapest possible way of sending a certain amount of flow through a flow network.
Contents |
[edit] Definition
Given a flow network with source and sink , where edge has capacity , flow and cost . The cost of sending this flow is . You are required to send an amount of flow .
The definition[1] of the problem is to minimize the total cost of the flow:
with the constraints
-
Capacity constraints: Skew symmetry: Flow conservation: for all Required flow:
[edit] Relation to other problems
A variation of this problem is to find a flow which is maximum, but has the lowest cost among the maximums. This could be called a minimum cost maximum flow problem. This is useful for finding minimum cost maximum matchings.
With some solutions, finding the minimum cost maximum flow instead is straightforward. If not, you can do a binary search on d.
A related and more general problem is the minimum cost circulation problem, which can be used for solving minimum cost flow. You do this by setting the lower bound on all edges to zero, and then make an extra edge from the sink t to the source s, with capacity c(t,s) = d and lower bound l(t,s) = d, forcing the total flow from s to t to also be d.
[edit] Solutions
Minimum cost flow can be solved by linear programming, since we optimize a linear function, and all constraints are simple.
You can also use a modification of the Ford-Fulkerson algorithm, in which the search for an augmenting path is done by finding the shortest path in terms of the cost k. You will have negative cost edges in this network, but you can use the Bellman-Ford algorithm, which handles this.
[edit] References
- ^ Thomas H. Cormen, Charles E. Leiserson, Ronald L. Rivest, and Clifford Stein [1990] (2001). "29", Introduction to Algorithms, 2nd edition, MIT Press and McGraw-Hill, 787-788. ISBN 0-262-03293-7.