English

Faster Weighted and Unweighted Tree Edit Distance and APSP Equivalence

Data Structures and Algorithms 2025-04-02 v3

Abstract

The tree edit distance (TED) between two rooted ordered trees with nn nodes labeled from an alphabet Σ\Sigma is the minimum cost of transforming one tree into the other by a sequence of valid operations consisting of insertions, deletions and relabeling of nodes. The tree edit distance is a well-known generalization of string edit distance and has been studied since the 1970s. Years of steady improvements have led to an O(n3)O(n^3) algorithm [DMRW 2010]. Fine-grained complexity casts light onto the hardness of TED showing that a truly subcubic time algorithm for TED implies a truly subcubic time algorithm for All-Pairs Shortest Paths (APSP) [BGMW 2020]. Therefore, under the popular APSP hypothesis, a truly subcubic time algorithm for TED cannot exist. However, unlike many problems in fine-grained complexity for which conditional hardness based on APSP also comes with equivalence to APSP, whether TED can be reduced to APSP has remained unknown. In this paper, we resolve this. Not only we show that TED is fine-grained equivalent to APSP, our reduction is tight enough, so that combined with the fastest APSP algorithm to-date [Williams 2018] it gives the first ever subcubic time algorithm for TED running in n3/2Ω(logn)n^3/2^{\Omega(\sqrt{\log{n}})} time. We also consider the unweighted tree edit distance problem in which the cost of each edit is one. For unweighted TED, a truly subcubic algorithm is known due to Mao [Mao 2022], later improved slightly by D\"{u}rr [D\"{u}rr 2023] to run in O(n2.9148)O(n^{2.9148}). Their algorithm uses bounded monotone min-plus product as a crucial subroutine, and the best running time for this product is O~(n3+ω2)O(n2.6857)\tilde{O}(n^{\frac{3+\omega}{2}})\leq O(n^{2.6857}) (where ω\omega is the exponent of fast matrix multiplication). In this work, we close this gap and give an algorithm for unweighted TED that runs in O~(n3+ω2)\tilde{O}(n^{\frac{3+\omega}{2}}) time.

Keywords

Cite

@article{arxiv.2411.06502,
  title  = {Faster Weighted and Unweighted Tree Edit Distance and APSP Equivalence},
  author = {Jakob Nogler and Adam Polak and Barna Saha and Virginia Vassilevska Williams and Yinzhan Xu and Christopher Ye},
  journal= {arXiv preprint arXiv:2411.06502},
  year   = {2025}
}

Comments

Replaced with revised version