Ask Question
14 June, 02:57

An edge of a flow network is called critical if decreasing the capacity of this edge results in a decrease in the maximum flow. On input a flow network G, you ran Ford-Fulkerson and computed a maximum flow f.

i. Give an efficient algorithm that finds a critical edge in G.

ii. Give an efficient algorithm that finds every critical edge in G.

+2
Answers (1)
  1. 14 June, 02:59
    0
    Begin find the residual graph of the graph G (V, E) using ford Fulkerson For each edge u, v in the residual graph such that u, v is not in the residual graph and also not in G Apply DFS to see if u has no path to v then return edge (u, v) else nothing end
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “An edge of a flow network is called critical if decreasing the capacity of this edge results in a decrease in the maximum flow. On input a ...” in 📗 Mathematics if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers