The computational complexity of Dinic is O(V^2E), and when E is proportional to V, V=10000, it seems that it cannot be solved, but it is considered “faster in reality”, and in fact it is fast, then how fast is it?
-
Dinic method and its time complexity - Misawamemo
- Computational complexity is reduced under some conditions when the side capacity is an integer.
- When maximum flow is F .
- When the capacity of an edge is at most C .
- and no multiple edges .
- When the flow through each vertex is at most F .
- Solving bipartite matching with maximum flow corresponds to the case F=1 above
- For implementations using dynamic trees, for general graphs .
- On the maximum flow problem. - Practice Book. - TopCoder Department
- On the Maximum Flow Problem, Part 3 - Practice Chos. - TopCoder Department
- Computational complexity is reduced under some conditions when the side capacity is an integer.
-
If the edge capacity is constant PDF
This page is auto-translated from /nishio/Dinicの速さ using DeepL. If you looks something interesting but the auto-translated English is not good enough to understand it, feel free to let me know at @nishio_en. I’m very happy to spread my thought to non-Japanese readers.