Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
1–10 of 44 posts
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#2Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#3Would love a tldr if anyone has a link.
If you're asking for a more blog post style exposition, this was also discussed on a competitive programming forum where the authors are active in:
https://codeforces.com/blog/entry/100510
Archive link since the site seems to be down for maintenance at this moment: https://web.archive.org/web/20220309063531/https://codeforce...
Screenshots of the most relevant parts of the discussions: https://twitter.com/BooleanAnalysis/status/14991905346230845...
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#4Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#5Np=p
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#6This looks like an interesting improvement possibility over the current algorithm for optimal pathfinding over the Lightning Network by Rene Pickhart, it would be interesting to know what he thinks about it:
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#7Surprisingly this result is (in contrast to the max flow result) entirely combinatoric!
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#8Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#9Coming to a software engineering interview near you!
Re: Maximum Flow and Minimum-Cost Flow in Almost-Linear Time
#10Would love a tldr if anyone has a link.
I think the algorithm is non-exact. Say, Theorem 1.1 explicitly mentions probability:
> There is an algorithm that, on a graph G = (V, E) with m edges, vertex demands, edge costs, and upper/lower edge capacities, all integral and bounded by U in absolute value, computes an exact min-cost flow in m1+o(1) log2 U time with high probability.
(See how their "theorem" is much easier to understand than the abstract...)
This is a kind of advanced algorithm with a sprinkle of optimization, so normal dudes won't be able to get a grasp on this easily. Also, this is too much for my caffeinated Monday morning.