Arc routing

Last updated

Arc routing problems (ARP) are a category of general routing problems (GRP), which also includes node routing problems (NRP). The objective in ARPs and NRPs is to traverse the edges and nodes of a graph, respectively. [1] The objective of arc routing problems involves minimizing the total distance and time, which often involves minimizing deadheading time, the time it takes to reach a destination. Arc routing problems can be applied to garbage collection, school bus route planning, package and newspaper delivery, deicing and snow removal with winter service vehicles that sprinkle salt on the road, [2] mail delivery, network maintenance, street sweeping, police and security guard patrolling, [1] and snow ploughing. [3] [4] Arc routings problems are NP hard, as opposed to route inspection problems that can be solved in polynomial-time.

Contents

For a real-world example of arc routing problem solving, Cristina R. Delgado Serna & Joaquín Pacheco Bonrostro applied approximation algorithms to find the best school bus routes in the Spanish province of Burgos secondary school system. The researchers minimized the number of routes that took longer than 60 minutes to traverse first. They also minimized the duration of the longest route with a fixed maximum number of vehicles. [5]

There are generalizations of arc routing problems that introduce multiple mailmen, for example the k Chinese Postman Problem (KCPP).

Background

The efficient scheduling and routing of vehicles can save industry and government millions of dollars every year. [2] [6] Arc routing problems have applications in school bus planning, garbage and waste and refuse collection in cities, mail and package delivery by mailmen and postal services, winter gritting and laying down salt to keep roads safe in the winter, snow plowing and removal, meter reading including remote radio frequency identification meter reading technology, street maintenance and sweeping, police patrol car route planning, and more.

Basis

The basic routing problem is: given a set of nodes and/or arcs to be serviced by a fleet of vehicles, find routes for each vehicle starting and ending at a depot. A vehicle route is a sequence of points or nodes, which the vehicle must traverse in order, starting and ending at a depot. [2]

Chinese postman problem

The Chinese Postman Problem (CPP) is aimed at finding the minimum length cycle for a single postman. The CPP requires all edges be traversed once, the rural postman problem (RPP) requires a subset of the edges to be traversed with the minimum length cycle. [1]

Vehicle routing problems/VRP

Arc routing problems impact strategic, tactical, and operational planning decisions. The strategic role of where a depot is placed depends on the most efficient arc route available. The decision of the vehicle fleet size and vehicle types with varying specifications relate to the tactical aspect of arc routing problems in operations research. Routing and scheduling decisions are operational planning decisions in arc routing problems. The operational planning decisions also includes the time that the vehicles are used by workers with staff decisions. [2] Vehicle routing decisions for the location of a depot depend on the cost of transporting materials over a geographical region. Bodin et. al applied vehicle routing to the dial a ride problem. [7]

Rural postman problem

In some situations, the set of edges that are required is different from the edges in the graph. This is modeled by the Rural Postman Problem (RPP), [1] where the required edges are a subset of the system of edges.

Algorithms

Finding an efficient solution with large amounts data to the Chinese Postman Problem (CPP), the Windy Postman Problem (WPP), the Rural Postman Problem (RPP), the k-Chinese postman problem (KCPP), the mixed Chinese postman problem (MCPP), the Directed Chinese Postman Problem (DCPP), [8] the Downhill Plowing Problem (DPP), the Plowing with Precedence Problem (PPP), the Windy Rural Postman Problem (WRPP) and the Windy General Routing Problem (WGRP) requires using thoughtful mathematical concepts, including heuristic optimization methods, branch-and-bound methods, integer linear programming, and applications of traveling salesman problem algorithms such as the Held–Karp algorithm makes an improvement from to . [9] In addition to these algorithms, these classes of problems can also be solved with the cutting plane algorithm, convex optimization, convex hulls, Lagrange multipliers and other dynamic programming methods. In cases where it is not feasible to run the Held–Karp algorithm because of its high computational complexity, algorithms like this can be used to approximate the solution in a reasonable amount of time. [10]

Eulerian circuits

The earliest documented reference to the area of arc routing problems is the classic bridges of Königsberg challenge, which Euler proved to be impossible. [4] The resident of Konigsberg, now part of Kaliningrad, wanted to find a way to cross all seven bridges over the river Pregel without backtracking or retracing their steps, that is crossing each bridge once and only once. In 1736, Euler reduced the problem to a question of nodes and edges and showed that the problem was impossible. In 1873, Hierholzer did more work on the question of closed circuits. [4]

The work on the Eulerian circuits was popularized with Scientific American on July 1, 1953. [11] This work was extended by Meigu Guan, also known as Kwan Mei-Ko at Shangtun Normal College. Meigu Guan was interested in a different question instead of determining a closed circuit. Guan worked to find out a minimum length walk that traversed every edge of the graph at least once. Guan described his goal in 1962: "A mailman has to cover his assigned segment before returning to the post office. The problem is to find the shortest walking distance for the mailman." [4]

Problem types

Arc routing problems (ARPs) differ in their goal and heuristics. However, all of them are known to be NP-hard.

Undirected rural postman problem

This problem is named after the postman and his challenge to deliver mail in any order he may choose, but minimizing his costs such as time or travel distance. It is also sometimes called the undirected chinese postman problem. The undirected rural postman problem (URPP) aims to minimize the total cost of a route that maps the entire network, or in more specific cases, a route that maps every edge that requires a service. If the whole network must be mapped, the route that maps the entire network is called a covering tour. In the case where only certain edges need to be mapped, the problem aims to solve the route that optimizes the demands, crossing over into non-required routes a minimal number of times. [12]

Undirected capacitated arc routing problem

The undirected capacitated arc routing problem consists of demands placed on the edges, and each edge must meet the demand. An example is garbage collection, where each route might require both a garbage collection and a recyclable collection. Problems in real life applications might arise if there are timing issues, such as the case in which certain routes cannot be serviced due to timing or scheduling conflicts, or constraints, such as a limited period of time. The heuristics described in this article ignore any such problems that arise due to application constraints. [12]

History

The URPP was first introduced in 1974 and was proven to be an NP-hard problem by Lenstra and Kan. The UCARP can be derived from the URPP, and thus is NP-hard as well. In 1981, another pair of computer scientists, Golden and Wong, managed to prove that even deriving a .5 approximation to the URPP was NP-hard. In 2000, Dror published a book describing different arc routing problems.

Windy postman problem and variants

The windy postman problem proposed by Minieka is a variant of the route inspection problem in which the input is an undirected graph, but where each edge may have a different cost for traversing it in one direction than for traversing it in the other direction. [13] In contrast to the solutions for directed and undirected graphs, it is NP-complete. [14] [15] The cost of traveling in one direction is greater when the wind is blowing in your face than when the wind is at your back, and this is the origin of the name Windy Postman problem. The work that it takes to traverse the street in one direction is different than the work it takes to traverse the street in another direction on a windy day. [8]

The windy postman problem is an arc routing problem (ARP) that contains the Mixed Chinese Postman Problem MCPP as a special case. [16]

The problem can be defined in the following manner: "Given an undirected and connected graph G=(V,E) with two non-negative costs and associated with each edge corresponding to the cost of traversing it from i to j and from j to i, respectively, the WPP is to find a minimum cost tour on G traversing each edge at least once." [16] This problem was introduced by Minieka. The WPP is NP-complete in general and can be solved in polynomial time if G is Eulerian, if the cost of two opposite orientations of every cycle in G in same or if G is a series-parallel graph. The Windy Rural Postman Problem (WRPP) is a generalization of the WPP in which not all the edges in the graph have to be traversed but only those in a given subset of required edges. For example, some rural roads are not required for the postman to cross and some roads on steep hills take longer to go up than down. [10]

The Windy Rural Postman Problem (WRPP) is a generalization of the WPP in which not all the edges in the graph have to be traversed but only those in a given subset of required edges. For example, some rural roads are not required for the postman to cross and some roads on steep hills take longer to go up than down. [10] Consider an undirected graph with two costs and associated with the cost to traverse the edge starting from i and j, respectively. G is the windy graph and we are interested in the subset of edges, or in mathematical symbols, .

If the WRPP includes the additional constraint that a certain set of vertices must be visited—, the problem turns into the Windy General Routing Problem (WGRP). Benavent proposed an integer linear programming formulation and different heuristics and lower bounds for the WRPP. [9]

Benavent et al published an evaluation of several heuristic methods used for solving the WRPP in a few seconds with a deviation no greater than 1% from the lower bound on medium sized graphs. They improved on this with a Scatter Search algorithm that reduced the difference to 0.5%. Scatter Search found solutions that deviated by less than 2% when implemented on networks with hundreds of nodes and thousands of edges. [9]

In real world applications, there are multiple vehicles that can move, which leads to the generalization named the Min-Max K-vehicles Windy Rural Postman Problem (MM K-WRPP). The min–max K-vehicles Windy Rural Postman Problem (MM K-WRPP) is defined as follows: Given a windy graph , a distinguished vertex, , representing the depot, a subset of required edges , and a fixed number K of vehicles, the MM K-WRPP consists of finding a set of K tours for the vehicles in such a way that each tour starts and ends at the depot and each required edge is serviced by exactly one vehicle. The objective is to minimize the length of the longest tour in order to find a set of balanced routes for the vehicles. Some real-life applications of routing problems with min–max objectives are school bus routing (Delgado and Pacheco 2001), the delivery of newspapers to customers (Applegate et al. 2002) and waste collection (Lacomme et al. 2004). [10]

The best MM K_WRPP algorithm was very close to the minimum solution with 2 and 3 vehicles, less than 0.4% on average. The gap increases to about 1.00% and 1.60% at 4 and 5 vehicles.

According to Dussault et al and Benavent et al, a metaheuristics multi-objective simulating annealing algorithm (MOSA) can solve the different contraints imposed on the WRPP. The WRPP is an important Arc Routing Problem which generalizes many of the single-vehicles Arc Routing problems. In real applications of math, a solution that minimizes the total costs of all vehicles route and the length of the longest tour is preferable. It's hard to be in a location where your package is always hours late. [8] We should start with the assumption that several vehicles with a specific measurable capacity to serve customers is more realistic than one vehicle with unmeasurable infinite capacity. Rabbani et. al measured the performance of MOSA algorithms and models using a multi-objective development of Cuckoo search—developed by Yang et al, [17] also referred to as Multi-objective Cuckoo Search and abbreviated by MOCS. [8] They concluded that MOSA methods were more efficient than MOCS methods. In the future comparisons with other meta-heuristic methods could be researched, including Non-dominated Sorting Genetic Algorithm (NSGA- ), multi-objective particle swarm optimization algorithm (MOPSO) and multi-objective Imperialist Competitive Algorithm.

In the Windy Postman Problem (WPP) model, the cost of going in one direction is different than the cost it takes to go in the other direction. For example, if the wind is blowing down the street it takes more time and energy to go against the wind than with the wind. Another example of the WPP is the cost of plowing uphill is greater than the cost of plowing downhill. [3] This is modeled by a variant studied by Dussault et al, the Downhill Plowing Problem (DPP). [3]

A branch and cut algorithm was published by Angel Corberan for the windy postman problem. The algorithm is based on heuristic and exact methods for manipulating odd-cut inequality violations. [16]

Applications

Various combinatorial problems have been reduced to the Chinese Postman Problem, including finding a maximum cut in a planar graph and a minimum-mean length circuit in an undirected graph. [18]

Snow plows

In winter a common question is what set of routes has the smallest (minimum) maximum route length? Typically, this is assessed as an arc routing problem with a graph. The time it takes to travel a street, known as deadhead time, is faster than the time it takes to plow the snow from the streets (or deliver mail or drop off packages). Another aspect that must be considered when applying arc routing to snow plowing is the fact that on steep streets it is either difficult or impossible to plow uphill. The objective is a route that avoids plowing uphill on steep streets that completes the job faster by maximizing the deadhead time to get the location. This was modeled with a heuristic algorithm that approximates a lower bound by Dussault, Golden and Wasil. [3] This is the Downhill Plow Problem (DPP). Snow teams prefer to plow downhill and deadhill uphill. This problem assumes that the conditions are severe enough that the streets are closed and there is no traffic.

The Downhill Plowing Problem ignores the Plowing with Precedence Problem (PPP), which is built on the reasonable assumption that if the snow is too deep the snow plow cannot deadhead an unplowed street. The DPP makes the assumption that the snow level is low enough that the streets that are not plowed can be deadheaded, but that the snow is deep enough that there is no traffic. If there is traffic on the roads, the assumption that it is impossible to plow uphill can no longer be held. The simulation for the DPP deadheaded unplowed street about 5% of the time, which is a topic for future graph theory and arc routing research.

Considering an undirected graph where is the set of vertices and nodes and is the set of arcs. Each arc represented by has four costs: , defined as the cost of plowing from to , , the cost of plowing from to , , the cost of deadheading from to , and , the cost of deadheading from to . The setup assumes that has a higher elevation , which leads to the statement: . In practice, downhill plowing time is two times as efficient as uphill plowing and deadheading is twice as efficient as plowing. The algorithm finds routes will each begin and end at the depot , plow the arc two times because the left side and right side of the street take two passes to plow.

The best solution will minimize the maximum route length. Dussault, Golden, and Wasil found an algorithm that did not exceed the lower bound by 5.5% in over 80 test runs. The deviation increased as the complexity of the model increased because there are more unoptimized approximations than optimized approximation as the model grows. An improvement on Dussault et. al's DPP algorithm might have penalties for making U-turns and left hand turns, or going straight across an intersection, which take additional time and pushes snow into the middle of the intersection, respectively. (see The Directed Rural Postman Problem with Turn Penalties problem, often referred to as the DRPP-TP below).

k-Chinese postman problem (k-CPP)

The k-Chinese Postman can be stated as follows: "given a connected edge-weighted graph G and integers p and k, decide whether there are at least k closed walks such that every edge of G is contained in at least one of them and the total weight of the edges in the walks is at most p?" The process of obtaining the solution to the k-CPP is NP complete. Gutin, Muciaccia, and Yeo proved in 2013 that the k-CPP is fixed-parameter tractable. [19] The authors prove the k-CPP admits a kernel with vertices and the directed version of the k-CPP is NP complete.

Rural postman problem (RPP) and generalizations

The rural postman problem (RPP) makes some routes mandatory and absolute but the person traversing the graph does not have to go in one particular direction. The RPP is NP hard and complete, in the same way that the kCPP, the DPP, the PPP, are NP hard. Benevant studied a generalization of this named Directed Rural Postman Problem with Turn Penalties (DRPP-TP). [20] Benevant's algorithm approximated the solution by transforming the DRPP-TP into an asymmetrical traveling salesman problem (ATSP).

Heuristics and algorithms

Most algorithms require a pre-processing of the graph, which simplifies the initial graph by removing all edges that are not in the shortest path between two required edges. Another simplification that the pre-processing adds is that it transforms the shortest path between 2 required edges into a single, non-required edge, regardless of the number of edges in the path, provided that there were no required edges in the path.

Once the pre-processing is done, the problem can be generalized into a convex hull problem, with the edges being the points of the hull. The convex hull problem can be solved through linear programming or through convex hull algorithms, but the process of finding the convex hull is an exponential problem.

Methods of solving the URPP after the pre-processing is done consist of the cutting plane algorithm and the branch & cut methodology. [21]

Complexity

This is a list of computational complexities for different arc routing problems.

CP variantClassical complexityApproximationParametrized complexity
Undirected-time algorithm [22]
Directed-time algorithm [22]

-time algorithm [23]

MixedNP-complete [24]

-time solvable if each vertex has even degree [22]

-time factor 3/2 [25] -time algorithm [26]

In FPT with respect to |A| [26]

In XP with respect to treewidth [27]

WindyNP-complete [28]

P in some special cases [28] [29]

Factor 3/2 [30]
k-HierarchicalNP-complete [31]

-time solvable if precedence relation linear

Min-sum k postmen-time algorithm with post office vertex, [32] otherwise NP-complete [33] In FPT with respect to k without post office vertex [34]
Min-max k postmenNP-complete [35] -time factor(2-1/k) [35]

List of arc routing variants

ProblemAbbreviationDescriptionOutput NotesExamples
Arc Routing ProblemARPDetermine a least-cost traversal of a specified arc subset of a graph, with or without constraints. [36] Seven Bridges of Konigsberg
Chinese Postman ProblemCPPundirected graph G with Vertices V and weighted edges ETraverse every edge at least once with minimal cost"A mailman has to cover his assigned segment before returning to the post office. The problem is to find the shortest walking distance for the mailman." [37]
Rural Postman ProblemRPPundirected graph G with Vertices V and weighted edges ETraverse a subset of the edges E at least once with minimum cost
Directed Rural Postman ProblemDRPP
Rural Postman Problem with Turn PenaltiesRPP-TP, RPPTP
Windy Postman ProblemWPP [38]
Windy Rural Postman ProblemWRPP
Street Sweeper ProblemSPP
m-Plowing Problemm-PP
Capacitated Plow ProblemC-PP
Downhill Plow ProblemDPP [39]
Downhill Plow Problem with Turn PenaltiesDPP-TP [40] [41]
Rural Downhill Plow Problem with Turn PenaltiesRDPP-TP
Capacitated Arc Routing ProblemCARP
k-Plow Windy Rural Postman Problemk-WRPP
Min-Max Downhill Plow Problem with Multiple PlowsMM k-DPP
Min-Max Windy Rural Postman ProblemMM k-WRPP
Plowing with Precedence ProblemPPP
Min-Max Extended Downhill Plow ProblemMM k-DPPE
Capacitated Chinese Postman ProblemCCPP
Directed Chinese Postman ProblemDCPP
Directed Rural Postman ProblemDRPP
Extended Capacitated Arc Routing ProblemECARP
Hierarchical Chinese Postman ProblemHCPP
Mixed Capacitated Arc Routing ProblemMCARP
Mixed Chinese Postman ProblemMCPP
Stacker Crane ProblemSCPCertain arcs must be traversed at least once in one direction but can be traversed as many times in the other direction
Traveling Salesman ProblemTSP
Undirected Capacitated Arc Routing ProblemUCARP
Undirected Rural Postman ProblemURPP
Vehicle Routing ProblemVRP
Min-Max Multiple-Depot Rural Postman ProblemMMMDRPP [42]
Generalized Vehicle Routing ProblemGVRP [43]

See also

Related Research Articles

<span class="mw-page-title-main">Graph theory</span> Area of discrete mathematics

In mathematics, graph theory is the study of graphs, which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of vertices which are connected by edges. A distinction is made between undirected graphs, where edges link two vertices symmetrically, and directed graphs, where edges link two vertices asymmetrically. Graphs are one of the principal objects of study in discrete mathematics.

<span class="mw-page-title-main">Travelling salesman problem</span> NP-hard problem in combinatorial optimization

The travelling salesman problem (TSP) asks the following question: "Given a list of cities and the distances between each pair of cities, what is the shortest possible route that visits each city exactly once and returns to the origin city?" It is an NP-hard problem in combinatorial optimization, important in theoretical computer science and operations research.

<span class="mw-page-title-main">Shortest path problem</span> Computational problem of graph theory

In graph theory, the shortest path problem is the problem of finding a path between two vertices in a graph such that the sum of the weights of its constituent edges is minimized.

The Hamiltonian path problem is a topic discussed in the fields of complexity theory and graph theory. It decides if a directed or undirected graph, G, contains a Hamiltonian path, a path that visits every vertex in the graph exactly once. The problem may specify the start and end of the path, in which case the starting vertex s and ending vertex t must be identified.

<span class="mw-page-title-main">Chinese postman problem</span> Finding shortest walks through all graph edges

In graph theory, a branch of mathematics and computer science, Guan's route problem, the Chinese postman problem, postman tour or route inspection problem is to find a shortest closed path or circuit that visits every edge of an (connected) undirected graph at least once. When the graph has an Eulerian circuit, that circuit is an optimal solution. Otherwise, the optimization problem is to find the smallest number of graph edges to duplicate so that the resulting multigraph does have an Eulerian circuit. It can be solved in polynomial time.

<span class="mw-page-title-main">Eulerian path</span> Trail in a graph that visits each edge once

In graph theory, an Eulerian trail is a trail in a finite graph that visits every edge exactly once. Similarly, an Eulerian circuit or Eulerian cycle is an Eulerian trail that starts and ends on the same vertex. They were first discussed by Leonhard Euler while solving the famous Seven Bridges of Königsberg problem in 1736. The problem can be stated mathematically like this:

<span class="mw-page-title-main">Independent set (graph theory)</span> Unrelated vertices in graphs

In graph theory, an independent set, stable set, coclique or anticlique is a set of vertices in a graph, no two of which are adjacent. That is, it is a set of vertices such that for every two vertices in , there is no edge connecting the two. Equivalently, each edge in the graph has at most one endpoint in . A set is independent if and only if it is a clique in the graph's complement. The size of an independent set is the number of vertices it contains. Independent sets have also been called "internally stable sets", of which "stable set" is a shortening.

<span class="mw-page-title-main">Graph homomorphism</span> A structure-preserving correspondence between node-link graphs

In the mathematical field of graph theory, a graph homomorphism is a mapping between two graphs that respects their structure. More concretely, it is a function between the vertex sets of two graphs that maps adjacent vertices to adjacent vertices.

<span class="mw-page-title-main">Dominating set</span> Subset of a graphs nodes such that all other nodes link to at least one

In graph theory, a dominating set for a graph G is a subset D of its vertices, such that any vertex of G is either in D, or has a neighbor in D. The domination numberγ(G) is the number of vertices in a smallest dominating set for G.

In the mathematical discipline of graph theory, a feedback vertex set (FVS) of a graph is a set of vertices whose removal leaves a graph without cycles. Equivalently, each FVS contains at least one vertex of any cycle in the graph. The feedback vertex set number of a graph is the size of a smallest feedback vertex set. The minimum feedback vertex set problem is an NP-complete problem; it was among the first problems shown to be NP-complete. It has wide applications in operating systems, database systems, and VLSI chip design.

<span class="mw-page-title-main">Feedback arc set</span> Edges that hit all cycles in a graph

In graph theory and graph algorithms, a feedback arc set or feedback edge set in a directed graph is a subset of the edges of the graph that contains at least one edge out of every cycle in the graph. Removing these edges from the graph breaks all of the cycles, producing an acyclic subgraph of the given graph, often called a directed acyclic graph. A feedback arc set with the fewest possible edges is a minimum feedback arc set and its removal leaves a maximum acyclic subgraph; weighted versions of these optimization problems are also used. If a feedback arc set is minimal, meaning that removing any edge from it produces a subset that is not a feedback arc set, then it has an additional property: reversing all of its edges, rather than removing them, produces a directed acyclic graph.

<span class="mw-page-title-main">Vehicle routing problem</span> Optimization problem

The vehicle routing problem (VRP) is a combinatorial optimization and integer programming problem which asks "What is the optimal set of routes for a fleet of vehicles to traverse in order to deliver to a given set of customers?" It generalises the travelling salesman problem (TSP). It first appeared in a paper by George Dantzig and John Ramser in 1959, in which the first algorithmic approach was written and was applied to petrol deliveries. Often, the context is that of delivering goods located at a central depot to customers who have placed orders for such goods. The objective of the VRP is to minimize the total route cost. In 1964, Clarke and Wright improved on Dantzig and Ramser's approach using an effective greedy algorithm called the savings algorithm.

In graph theory and theoretical computer science, the longest path problem is the problem of finding a simple path of maximum length in a given graph. A path is called simple if it does not have any repeated vertices; the length of a path may either be measured by its number of edges, or by the sum of the weights of its edges. In contrast to the shortest path problem, which can be solved in polynomial time in graphs without negative-weight cycles, the longest path problem is NP-hard and the decision version of the problem, which asks whether a path exists of at least some given length, is NP-complete. This means that the decision problem cannot be solved in polynomial time for arbitrary graphs unless P = NP. Stronger hardness results are also known showing that it is difficult to approximate. However, it has a linear time solution for directed acyclic graphs, which has important applications in finding the critical path in scheduling problems.

In mathematics, the minimum k-cut is a combinatorial optimization problem that requires finding a set of edges whose removal would partition the graph to at least k connected components. These edges are referred to as k-cut. The goal is to find the minimum-weight k-cut. This partitioning can have applications in VLSI design, data-mining, finite elements and communication in parallel computing.

In graph theory, the metric k-center problem is a combinatorial optimization problem studied in theoretical computer science. Given n cities with specified distances, one wants to build k warehouses in different cities and minimize the maximum distance of a city to a warehouse. In graph theory, this means finding a set of k vertices for which the largest distance of any point to its closest vertex in the k-set is minimum. The vertices must be in a metric space, providing a complete graph that satisfies the triangle inequality.

Meigu Guan is a Chinese mathematician and one of the country's leading experts on mathematical programming. He is known for his research on the route inspection problem, and served as president of Shandong Normal University.

The snow plow routing problem is an application of the structure of Arc Routing Problems (ARPs) and Vehicle Routing Problems (VRPs) to snow removal that considers roads as edges of a graph.

The mixed Chinese postman problem (MCPP or MCP) is the search for the shortest traversal of a graph with a set of vertices V, a set of undirected edges E with positive rational weights, and a set of directed arcs A with positive rational weights that covers each edge or arc at least once at minimal cost. The problem has been proven to be NP-complete by Papadimitriou. The mixed Chinese postman problem often arises in arc routing problems such as snow ploughing, where some streets are too narrow to traverse in both directions while other streets are bidirectional and can be plowed in both directions. It is easy to check if a mixed graph has a postman tour of any size by verifying if the graph is strongly connected. The problem is NP hard if we restrict the postman tour to traverse each arc exactly once or if we restrict it to traverse each edge exactly once, as proved by Zaragoza Martinez.

In mathematics, the capacitated arc routing problem (CARP) is that of finding the shortest tour with a minimum graph/travel distance of a mixed graph with undirected edges and directed arcs given capacity constraints for objects that move along the graph that represent snow-plowers, street sweeping machines, or winter gritters, or other real-world objects with capacity constraints. The constraint can be imposed for the length of time the vehicle is away from the central depot, or a total distance traveled, or a combination of the two with different weighting factors.

References

  1. 1 2 3 4 Chen, Huanfa; Cheng, Tao; Shawe-Taylor, John (2018-01-02). "A Balanced Route Design for Min-Max Multiple-Depot Rural Postman Problem (MMMDRPP): a police patrolling case". International Journal of Geographical Information Science. 32 (1): 169–190. doi: 10.1080/13658816.2017.1380201 . ISSN   1365-8816. S2CID   29526595.
  2. 1 2 3 4 Omer, Masoud (2007). "Efficient routing of snow r outing of snow removal vehicles vehicles".
  3. 1 2 3 4 Dussault, Benjamin; Golden, Bruce; Wasil, Edward (October 2014). "The downhill plow problem with multiple plows". Journal of the Operational Research Society. 65 (10): 1465–1474. doi:10.1057/jors.2013.83. ISSN   0160-5682. S2CID   36977043.
  4. 1 2 3 4 Eiselt, H. A.; Gendreau, Michel; Laporte, Gilbert (April 1995). "Arc Routing Problems, Part I: The Chinese Postman Problem". Operations Research. 43 (2): 231–242. doi: 10.1287/opre.43.2.231 . hdl: 11059/14013 . ISSN   0030-364X.
  5. Delgado Serna, Cristina R.; Pacheco Bonrostro, Joaquín (2001), Voß, Stefan; Daduna, Joachim R. (eds.), "Minmax Vehicle Routing Problems: Application to School Transport in the Province of Burgos", Computer-Aided Scheduling of Public Transport, Berlin, Heidelberg: Springer, pp. 297–317, doi:10.1007/978-3-642-56423-9_17, ISBN   978-3-642-56423-9 , retrieved 2022-05-01
  6. Bodin, Lawrence; Golden, Bruce (1981). "Classification in vehicle routing and scheduling". Networks. 11 (2): 97–108. doi:10.1002/net.3230110204.
  7. Bodin, Lawrence D.; Sexton, Thomas R. (February 1983). The Multi-Vehicle Subscriber Dial-A-Ride Problem (Technical report). Naval Postgraduate School. hdl:10945/63226. NPS55-83-002.
  8. 1 2 3 4 Rabbani, Masoud; Alamdar, Safoura Famil; Farrokhi-Asl, Hamed (2016-02-01). "Capacitated Windy Rural Postman Problem with Several Vehicles: A Hybrid Multi-Objective Simulated Annealing Algorithm" (PDF). International Journal of Supply and Operations Management. 2 (4): 1003–20. doi:10.22034/2015.4.03. ISSN   2383-1359.
  9. 1 2 3 Benavent, E.; Corberán, A.; Piñana, E.; Plana, I.; Sanchis, J. M. (December 2005), "New heuristic algorithms for the windy rural postman problem", Computers and Operations Research, 32 (12): 3111–28, doi:10.1016/j.cor.2004.04.007, hdl: 10251/94488
  10. 1 2 3 4 Benavent, Enrique; Corberán, Ángel; Sanchis, José M. (July 2010). "A metaheuristic for the min–max windy rural postman problem with K vehicles". Computational Management Science. 7 (3): 269–287. doi:10.1007/s10287-009-0119-2. hdl: 10251/100790 . ISSN   1619-697X. S2CID   41426793.
  11. "Leonhard Euler and the Koenigsberg Bridges". Scientific American. Retrieved 2022-04-30.
  12. 1 2 H. A., Eiselt; Michel, Gendreau (1995). "Arc Routing Problems, Part II: The Rural Postman Problem". Operations Research. 43 (3): 399–414. doi: 10.1287/opre.43.3.399 .
  13. Minieka, Edward (July 1979). "The Chinese Postman Problem for Mixed Networks". Management Science. 25 (7): 643–648. doi:10.1287/mnsc.25.7.643.
  14. Guan, Meigu (1984), "On the windy postman problem", Discrete Applied Mathematics , 9 (1): 41–46, doi: 10.1016/0166-218X(84)90089-1 , MR   0754427 .
  15. Lenstra, J.K.; Rinnooy Kan, A.H.G. (1981), "Complexity of vehicle routing and scheduling problems" (PDF), Networks, 11 (2): 221–7, doi:10.1002/net.3230110211
  16. 1 2 3 Corberán, Angel; Oswald, Marcus; Plana, Isaac; Reinelt, Gerhard; Sanchis, José M. (April 2012). "New results on the Windy Postman Problem". Mathematical Programming. 132 (1–2): 309–332. doi:10.1007/s10107-010-0399-x. ISSN   0025-5610. S2CID   12808962.
  17. Yang, Xin-She (2010). "Engineering Optimisation by Cuckoo Search". International Journal of Mathematical Modelling and Numerical Optimisation. 1 (4): 330–343. arXiv: 1005.2908 . doi:10.1504/IJMMNO.2010.035430. S2CID   34889796.
  18. A. Schrijver, Combinatorial Optimization, Polyhedra and Efficiency, Volume A, Springer. (2002).
  19. Gutin, Gregory; Muciaccia, Gabriele; Yeo, Anders (2013-11-18). "Parameterized complexity of k-Chinese Postman Problem". Theoretical Computer Science. 513: 124–128. arXiv: 1308.0482 . doi: 10.1016/j.tcs.2013.10.012 . ISSN   0304-3975. S2CID   2867281.
  20. Benavent, Enrique; Soler, David (November 1999). "The Directed Rural Postman Problem with Turn Penalties". Transportation Science. 33 (4): 408–418. doi:10.1287/trsc.33.4.408. ISSN   0041-1655.
  21. Hertz, Alain. "Recent trends in arc routing" (PDF). Ecole Polytechnique — GERAD.
  22. 1 2 3 Edmonds, Jack; Johnson, Ellis L. (1973). "Matching, Euler tours and the Chinese postman". Mathematical Programming. 5 (1): 88–124. doi:10.1007/bf01580113. ISSN   0025-5610. S2CID   15249924.
  23. Yaxiong, Lin; Yongchang, Zhao (January 1988). "A new algorithm for the directed chinese postman problem". Computers & Operations Research. 15 (6): 577–584. doi:10.1016/0305-0548(88)90053-6. ISSN   0305-0548.
  24. Papadimitriou, Christos H. (July 1976). "On the complexity of edge traversing". Journal of the ACM. 23 (3): 544–554. doi: 10.1145/321958.321974 . ISSN   0004-5411. S2CID   8625996.
  25. Raghavachari, Balaji; Veerasamy, Jeyakesavan (January 1999). "A 3/2-Approximation Algorithm for the Mixed Postman Problem". SIAM Journal on Discrete Mathematics. 12 (4): 425–433. doi:10.1137/s0895480197331454. ISSN   0895-4801.
  26. 1 2 Gutin, Gregory; Jones, Mark; Sheng, Bin (2014), "Parameterized Complexity of the k-Arc Chinese Postman Problem", Algorithms - ESA 2014, Berlin, Heidelberg: Springer Berlin Heidelberg, pp. 530–541, arXiv: 1403.1512 , doi:10.1007/978-3-662-44777-2_44, ISBN   978-3-662-44776-5, S2CID   3472348 , retrieved 2022-05-09
  27. Fernandes, Cristina G.; Lee, Orlando; Wakabayashi, Yoshiko (January 2009). "Minimum cycle cover and Chinese postman problems on mixed graphs with bounded tree-width". Discrete Applied Mathematics. 157 (2): 272–279. doi: 10.1016/j.dam.2007.10.032 . ISSN   0166-218X.
  28. 1 2 Guan, Meigu (September 1984). "On the windy postman problem". Discrete Applied Mathematics. 9 (1): 41–46. doi: 10.1016/0166-218x(84)90089-1 . ISSN   0166-218X.
  29. Win, Zaw (May 1989). "On the Windy Postman Problem on eulerian graphs". Mathematical Programming. 44 (1–3): 97–112. doi:10.1007/bf01587080. ISSN   0025-5610. S2CID   206800125.
  30. Veerasamy, Jeyakesavan (1999). Approximation algorithms for Postman problems (PhD thesis). University of Texas at Dallas.
  31. Dror, Moshe; Stern, Helman; Trudeau, Pierre (1987). "Postman tour on a graph with precedence relation on arcs". Networks. 17 (3): 283–294. doi:10.1002/net.3230170304. ISSN   0028-3045.
  32. "12th world computer congress— IFIP congress'92". Computers in Industry. 20 (1): 124–126. January 1992. doi: 10.1016/0166-3615(92)90137-c . ISSN   0166-3615.
  33. Thomassen, Carsten (June 1997). "On the Complexity of Finding a Minimum Cycle Cover of a Graph". SIAM Journal on Computing. 26 (3): 675–677. doi:10.1137/s0097539794267255. ISSN   0097-5397.
  34. Corberán, Ángel (2015). Arc Routing: Problems, Methods, and Applications. ISBN   978-1-61197-366-2.
  35. 1 2 Frederickson, Greg N.; Hecht, Matthew S.; Kim, Chul E. (May 1978). "Approximation Algorithms for Some Routing Problems". SIAM Journal on Computing. 7 (2): 178–193. doi:10.1137/0207017. ISSN   0097-5397. S2CID   7562375.
  36. Eiselt, H (May 1995). "Arc routing problems, part II: The rural postman problem". p. 399. ProQuest   219174102.
  37. Guan, Meigu (1962). "Graphic programming using odd or even points". Chinese Mathematics.
  38. Dussault, Benjamin; Golden, Bruce; Groër, Chris; Wasil, Edward (2013-04-01). "Plowing with precedence: A variant of the windy postman problem". Computers & Operations Research. 40 (4): 1047–1059. doi:10.1016/j.cor.2012.10.013. ISSN   0305-0548.
  39. Dussault, Benjamin; Golden, Bruce; Wasil, Edward (2014-10-01). "The downhill plow problem with multiple plows". Journal of the Operational Research Society. 65 (10): 1465–1474. doi:10.1057/jors.2013.83. ISSN   1476-9360. S2CID   36977043.
  40. Dussault, Benjamin; Golden, Bruce; Wasil, Edward (2014-10-01). "The downhill plow problem with multiple plows". Journal of the Operational Research Society. 65 (10): 1465–1474. doi:10.1057/jors.2013.83. ISSN   1476-9360. S2CID   36977043.
  41. Dussualt, Benjamin (2012). "Modeling and solving arc routing problems in street sweeping and snow plowing". ProQuest .
  42. Chen, Huanfa; Cheng, Tao; Shawe-Taylor, John (2018-01-02). "A Balanced Route Design for Min-Max Multiple-Depot Rural Postman Problem (MMMDRPP): a police patrolling case". International Journal of Geographical Information Science. 32 (1): 169–190. doi: 10.1080/13658816.2017.1380201 . ISSN   1365-8816. S2CID   29526595.
  43. Ghiani, Gianpaolo; Improta, Gennaro (2000-04-01). "An efficient transformation of the generalized vehicle routing problem". European Journal of Operational Research. 122 (1): 11–17. doi:10.1016/S0377-2217(99)00073-9. ISSN   0377-2217.