Solving Co-Path/Cycle Packing and Co-Path Packing Faster Than $3^k$
Yuxi Liu, Mingyu Xiao
TL;DR
This work studies Co-Path/Cycle Packing (CPC) and Co-Path Packing (CPP), asking whether at most $k$ vertices can be deleted to obtain a graph whose components are induced paths (and cycles in CPC).The authors develop a two-pronged approach that combines a branch-and-search phase to reduce hard instances to structured graphs with bounded pathwidth and a dynamic programming phase on path decompositions; for CPP they additionally integrate a Cut & Count based randomized DP to handle global connectivity.Their main results are a deterministic $O^*(2.8192^k)$-time algorithm for CPC with $O^*(2.5199^k)$ space, and a randomized $O^*(2.9241^k)$-time algorithm for CPP with failure probability at most $1/3$; CPP also admits a $5^{p}$-time DP if a path decomposition of width $p$ is given.The paper demonstrates that breaking the $3^k$ barrier is achievable by pruning bottlenecks via a pathwidth-aware branch-and-search strategy and by leveraging Cut & Count for connectivity-type problems.These methods and insights may extend to other parameterized, connectivity-type graph problems and motivate future work toward deterministic CPP algorithms faster than the $3^k$ threshold.
Abstract
The \textsc{Co-Path/Cycle Packing} problem (resp. The \textsc{Co-Path Packing} problem) asks whether we can delete at most $k$ vertices from the input graph such that the remaining graph is a collection of induced paths and cycles (resp. induced paths). These two problems are fundamental graph problems that have important applications in bioinformatics. Although these two problems have been extensively studied in parameterized algorithms, it seems hard to break the running time bound $3^k$. In 2015, Feng et al. provided an $O^*(3^k)$-time randomized algorithms for both of them. Recently, Tsur showed that they can be solved in $O^*(3^k)$ time deterministically. In this paper, by combining several techniques such as path decomposition, dynamic programming, cut \& count, and branch-and-search methods, we show that \textsc{Co-Path/Cycle Packing} can be solved in $O^*(2.8192^k)$ time deterministically and \textsc{Co-Path Packing} can be solved in $O^*(2.9241^{k})$ time with failure probability $\leq 1/3$. As a by-product, we also show that the \textsc{Co-Path Packing} problem can be solved in $O^*(5^p)$ time with probability at least 2/3 if a path decomposition of width $p$ is given.
