Navigation
  • Home
  • Recent
  • Most Active
  • Popular
  • Blog
  • Credits
  • RSS
  •   Interaction
  • Register
  • Statistics
  •   Help
  • Suggestions
  • Contact Us
  • How to Edit
  • Help



  • [Edit]


    The minimum cost flow problem is finding the cheapest possible way of sending a certain amount of flow through a flow network.

        Minimum cost flow problem
            Definition
            Relation to other problems
            Solutions

    top

    Definition

    Given a flow network ,G(V,E) with source s in V and sink t in V, where edge (u,v) in E has capacity ,c(u,v), flow ,f(u,v), and the cost of sending this flow is f(u,v) cdot a(u,v). You are required to send an amount of flow ,d.

    The definition of the problem is to minimise the total cost of the flow:

    sum_ a(u,v) cdot f(u,v)


    with the constraints


    top

    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.

    top

    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.
     
    Search more:
     

       
    Source Privacy License Download Contact Us Atlas
    Scientus.org Dictionary (Yet Another Wiki) RC : 1.39
    MIT OpenCourseWare
    This article is licensed under the GNU Free Documentation License [copyleft]. It uses material from the Wikipedia article "Minimum cost flow problem". link