This problem involves the Route Inspection Problem (also known as the Chinese Postman Problem), which requires finding the shortest path that traverses every edge of a graph at least once and returns to the starting node.
A maintenance crew must traverse every street in a network with a central hub and peripheral nodes . The street lengths are , , , , and the ring streets are , , , .
Starting and ending at , find the minimal distance required to cover each street at least once.
[6]Questions on Graph Theory and the Route Inspection Problem (Chinese Postman Problem) applied to a tree network.
A tree network consists of a central node connected to leaves , , and by edges , , and . Find the length of the minimal closed walk that covers every edge at least once.
[6]In a connected weighted graph, explain why duplicating the minimal-weight perfect matching on the odd-degree vertices yields an Eulerian multigraph and hence solves the Chinese postman problem.
In a connected weighted graph, explain why duplicating the minimal-weight perfect matching on the odd-degree vertices yields an Eulerian multigraph and hence solves the Chinese postman problem.
[5]Chinese Postman Problem / Route Inspection Problem on a weighted graph.
A street network is represented by a graph with vertices and edges with the following weights:
Find the minimum length of a closed path that covers each street at least once.
[5]