Finding All Allowed Edges in a Bipartite Graph
Tamir Tassa

TL;DR
This paper presents a linear-time algorithm for finding all allowed edges in a bipartite graph, significantly improving efficiency over previous methods by leveraging a known maximum matching.
Contribution
The authors introduce a deterministic, simple, and efficient linear-time algorithm for identifying all allowed edges in bipartite graphs, reducing complexity to that of finding a maximum matching.
Findings
Algorithm runs in O(n+m) time for bipartite graphs.
Improves upon previous algorithms with higher time complexities.
Applicable to dense graphs with better performance for certain edge-to-vertex ratios.
Abstract
We consider the problem of finding all allowed edges in a bipartite graph , i.e., all edges that are included in some maximum matching. We show that given any maximum matching in the graph, it is possible to perform this computation in linear time (where and ). Hence, the time complexity of finding all allowed edges reduces to that of finding a single maximum matching, which is [Hopcroft and Karp 1973], or for dense graphs with [Alt et al. 1991]. This time complexity improves upon that of the best known algorithms for the problem, which is ([Costa 1994] for bipartite graphs, and [Carvalho and Cheriyan 2005] for general graphs). Other algorithms for solving that problem are randomized algorithms due to [Rabin and Vazirani 1989] and [Cheriyan 1997], the runtime of which is .…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsComplexity and Algorithms in Graphs · Optimization and Search Problems · Advanced Graph Theory Research
