# Constant Girth Approximation for Directed Graphs in Subquadratic Time

**Authors:** Shiri Chechik, Yang P. Liu, Omer Rotem, Aaron Sidford

arXiv: 1907.10779 · 2020-04-15

## TL;DR

This paper introduces faster algorithms for approximating the girth of directed graphs, achieving constant-factor approximations in subquadratic time, surpassing previous methods that relied on All-Pairs Shortest Paths computations.

## Contribution

The paper presents the first subquadratic time algorithms for constant-factor girth approximation in directed graphs, including deterministic and trade-off algorithms improving upon prior randomized methods.

## Key findings

- First sub-APSP-time algorithm for girth approximation.
- Deterministic algorithm with improved approximation factor.
- Trade-off algorithm balancing time complexity and approximation quality.

## Abstract

In this paper we provide a $\tilde{O}(m\sqrt{n})$ time algorithm that computes a $3$-multiplicative approximation of the girth of a $n$-node $m$-edge directed graph with non-negative edge lengths. This is the first algorithm which approximates the girth of a directed graph up to a constant multiplicative factor faster than All-Pairs Shortest Paths (APSP) time, i.e. $O(mn)$. Additionally, for any integer $k \ge 1$, we provide a deterministic algorithm for a $O(k\log\log n)$-multiplicative approximation to the girth in directed graphs in $\tilde{O}(m^{1+1/k})$ time. Combining the techniques from these two results gives us an algorithm for a $O(k\log k)$-multiplicative approximation to the girth in directed graphs in $\tilde{O}(m^{1+1/k})$ time. Our results naturally also provide algorithms for improved constructions of roundtrip spanners, the analog of spanners in directed graphs.   The previous fastest algorithms for these problems either ran in All-Pairs Shortest Paths (APSP) time, i.e. $O(mn)$, or were due Pachocki et al. (PRSTV18) which provided a randomized algorithm that for any integer $k \ge 1$ in time $\tilde{O}(m^{1+1/k})$ computed with high probability a $O(k\log n)$ multiplicative approximation of the girth. Our first algorithm constitutes the first sub-APSP-time algorithm for approximating the girth to constant accuracy, our second removes the need for randomness and improves the approximation factor in Pachocki et al. (PRSTV18), and our third is the first time versus quality trade-off for obtaining constant approximations.

## Full text

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

## References

22 references — full list in the complete paper: https://tomesphere.com/paper/1907.10779/full.md

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