Question 10
Given a flow network (G, s, t, c) and a flow f, how will you determine if f is maximum flow?
If there is any edge that is not saturated to full capacity, then we can conclude that f is not a maximum flow.
If the residual graph does not have any augmenting paths then f is a maximum flow.
If the value of the flow f is not the sum of the capacities of the edges coming out of the source s then f is not a maximum flow.
If the value of the flow f is not the sum of the capacities of the edges coming into the sink t then f is not a maximum flow.