Edmonds-Karp algorithm says that shortest distance between source s and sink t is increases monotonically every time shortest path is augmented. With this assumption distance between source s and sink t is going to be not more then |V| - 1. I think it means that there would be no more path between source S and sink T after |V| - 1 augmentation. If this is true , then complexity of finding maximum flow would be (|V| - 1) * E.
I know i wrongly assumed something above. But couldn't understand what it is. Can anyone help me ?