# The Demand Query Model for Bipartite Matching

**Authors:** Noam Nisan

arXiv: 1906.04213 · 2019-06-12

## TL;DR

This paper introduces a demand query model for bipartite matching algorithms, establishing bounds on the complexity of finding maximum matchings and highlighting differences between deterministic and randomized approaches.

## Contribution

It proposes a new complexity model for bipartite matching algorithms and provides lower bounds for deterministic algorithms, contrasting with efficient randomized algorithms.

## Key findings

- Deterministic algorithms require n^{o(1)} rounds with many demand queries to approximate maximum matching.
- Randomized algorithms can achieve near-maximal matchings in logarithmic rounds with fewer demand queries.
- A perfect matching can be found with O(n^{3/2}) demand queries in this model.

## Abstract

We introduce a `concrete complexity' model for studying algorithms for matching in bipartite graphs. The model is based on the "demand query" model used for combinatorial auctions. Most (but not all) known algorithms for bipartite matching seem to be translatable into this model including exact, approximate, sequential, parallel, and online ones. A perfect matching in a bipartite graph can be found in this model with O(n^{3/2}) demand queries (in a bipartite graph with n vertices on each side) and our main open problem is to either improve the upper bound or prove a lower bound. An improved upper bound could yield "normal" algorithms whose running time is better than the fastest ones known, while a lower bound would rule out a faster algorithm for bipartite matching from within a large class of algorithms. Our main result is a lower bound for finding an approximately maximum size matching in parallel: A deterministic algorithm that runs in n^{o(1)} rounds, where each round can make at most n^{1.99} demand queries cannot find a matching whose size is within n^{o(1)} factor of the maximum. This is in contrast to randomized algorithms that can find a matching whose size is $99\%$ of the maximum in O(\log n) rounds, each making n demand queries.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1906.04213/full.md

## References

18 references — full list in the complete paper: https://tomesphere.com/paper/1906.04213/full.md

---
Source: https://tomesphere.com/paper/1906.04213