Suppose that we redefine the residual network to disallow edges into
s
. Argue that the procedure FORD-FULKERSON still correctly computes a maximum flow.
I was thinking that when we augment a path the residual capacity of reverse edge increases and can be used to decrease the flow in that edge (but overall increase the network flow) if needed. So if we disallow the edges into s
that means we are not allowing decrease in flow in edges s- x
(x
is the adjacent node to s
). So in the case when we allow edges into s
we can have a cycle like
s to x_1 leadsto y leadsto x_2 to s to x_3 leadsto t
But if we disallow edges into s
again we can find the same path with out the cycle. All the above are intuitive ideas but I want a formal proof.
The question is from Introduction to Algorithms by Cormen et al.