How many constraints does flow have?
One
Three
Two
Four
14 practice sets · Page 1 of 1
How many constraints does flow have?
One
Three
Two
Four
What is the running time of Dinic's blocking flow algorithm?
O(V^2E)
O(VE^2)
O(V^3)
O(E max |f|)
Who formulated the Maximum flow problem?
Lester R. Ford and Delbert R. Fulkerson
T.E. Harris and F.S. Ross
Y.A. Dinitz
Kruskal
What is the running time of an unweighted shortest path algorithm whose augmenting path is the path with the least number of edges?
O(E)
O(EV)
O(EV^2)
O(E log V)
Dinic's algorithm runs faster than the Ford-Fulkerson algorithm.
True
False
In what time can an augmenting path be found?
O(|E| log |V|)
O(|E|)
O(|E|·|V|^2)
O(|E|·|V|^2 log |V|)
A simple acyclic path between source and sink which passes through only positive weighted edges is called?
Augmenting path
Critical path
Residual path
Maximum path
Under what condition can a vertex combine and distribute flow in any manner?
It may violate edge capacities
It should maintain flow conservation
The vertex should be a source vertex
The vertex should be a sink vertex
The first step in the naive greedy algorithm is?
Analysing the zero flow
Calculating the maximum flow using trial and error
Adding flows with higher values
Reversing flow if required
Does Ford-Fulkerson algorithm use the idea of?
Naive greedy algorithm approach
Residual graphs
Minimum cut
Minimum spanning tree
Which algorithm is used to solve a maximum flow problem?
Prim's algorithm
Kruskal's algorithm
Dijkstra's algorithm
Ford-Fulkerson algorithm
What is the source?
Vertex with no incoming edges
Vertex with no leaving edges
Centre vertex
Vertex with the least weight
A network can have only one source and one sink.
False
True
What does Maximum flow problem involve?
Finding a flow between source and sink that is maximum
Finding a flow between source and sink that is minimum
Finding the shortest path between source and sink
Computing a minimum spanning tree