Multi-Source Shortest Path Query with Assembly Points on Large Graphs

Dian Ouyang,Zhuoran Wang,Fan Zhang,Shiyu Yang,Jianye Yang,Xuemin Lin
DOI: https://doi.org/10.1109/tkde.2024.3424947
IF: 9.235
2024-01-01
IEEE Transactions on Knowledge and Data Engineering
Abstract:Computing Multi-source Shortest Path query with Assembly points (MSPA) is a fundamental graph problem. The MSPA problem locates a set of assembly points to minimize the overall distance for transporting objects from different sources to a destination, where we can assemble objects at assembly points to reduce the total cost. We prove that the MSPA problem is NP-hard. The intuitive method for computing the optimal set of assembly points and the corresponding set of paths is by Branch-and-Bound. However, the combination of different assembly points is exponential. By analyzing the structure of the path set based on the proposed distance graph, we find that the used paths can be combined into a tree. Hence, by defining the state of subtrees and the state transition equation, we propose a dynamic programming (DP) algorithm by pruning the redundant computation of subtrees. The experiment shows that the DP algorithm can achieve three orders of magnitude speedup in query processing time compared with the optimized Branch-and-Bound algorithm. Moreover, we reduce the transition candidates of the DP algorithm from the entire vertex set to certain neighbors. Extensive experiments are conducted on different types of real-world networks to demonstrate the performance of our DP algorithm.
What problem does this paper attempt to address?