Improving polynomial bounds for the Graphical Traveling Salesman Problem with release dates on paths
Thailsson Clementino, Rosiane de Freitas
TL;DR
This work addresses GTSP-rd restricted to path graphs, tackling two objectives: makespan minimization (time) and total travel distance (distance). It develops refined dynamic-programming frameworks that exploit path structure and non-interlacing routes, supported by data-structures such as minqueues and Thorup-style heaps. The main contributions are: $O(n)$ time for GTSP-rd(time) when the depot sits at a path extremity, $O(n \\log \\log n)$ for GTSP-rd(distance) in the same extremity case, and $O(n^2)$ (time) plus $O(n^2 \\log \\log n)$ (distance) for the general depot location on a path. These results yield exact, scalable polynomial-time algorithms for GTSP-rd on paths and suggest avenues for extending these techniques to more complex sparse graphs.
Abstract
The Graphical Traveling Salesman Problem with release dates (GTSP-rd) is a variation of the TSP-rd where each vertex in a weighted graph $G$ must be visited at least once, respecting the release date restriction. The edges may be traversed multiple times if necessary, as in some sparse graphs. This paper focuses on solving the GTSP-rd in paths. We consider two objective functions: minimizing the route completion time (GTSP-rd (time)) and minimizing the total distance traveled (GTSP-rd (distance)). We present improvements to existing dynamic programming algorithms, offering an $O(n)$ solution for paths where the depot is located at the extremity and an $O(n^2)$ solution for paths where the depot is located anywhere. For the GTSP-rd (distance), we propose an $O(n \log \log n)$ solution for the case with the depot at the extremity and an $O(n^2 \log \log n)$ solution for the general case.
