What exactly is augmenting path?

前端 未结 4 1440
遥遥无期
遥遥无期 2020-12-29 01:40

When talking about computing network flows, the Algorithm Design Manual says:

Traditional network flow algorithms are based on the idea o

4条回答
  •  独厮守ぢ
    2020-12-29 02:18

    An augmenting path is a simple path - a path that does not contain cycles - through the graph using only edges with positive capacity from the source to the sink.

    So the statement above is somehow obvious - if you can not find a path from the source to the sink that only uses positive capacity edges, then the flow can not be increased.

    By the way the proof of that statement is not that easy.

提交回复
热议问题