How can I find the minimum cut on a graph using a maximum flow algorithm?

后端 未结 7 1696
旧时难觅i
旧时难觅i 2020-12-07 13:27

I need to find the minimum cut on a graph. I\'ve been reading about flow networks, but all I can find are maximum flow algorithms such as Ford-Fulkerson, push-relabel, etc.

7条回答
  •  攒了一身酷
    2020-12-07 13:47

    Note: Falk's algorythm can be used to find both a minimum cut with minimum vertices and with maximum vertices. For the latter the algorythm should be reversed, ie. search from the sink vertex instead of the source. See a related question: Network Flow: Adding a new edge

提交回复
热议问题