Next Article in Journal
Compaction of Church Numerals
Previous Article in Journal
In Search of the Densest Subgraph
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

A Fast Randomized Algorithm for the Heterogeneous Vehicle Routing Problem with Simultaneous Pickup and Delivery

by
Napoleão Nepomuceno
*,
Ricardo Barboza Saboia
and
Plácido Rogério Pinheiro
Graduate Program in Applied Informatics, University of Fortaleza, 60811-905 Fortaleza, Ceará, Brazil
*
Author to whom correspondence should be addressed.
Algorithms 2019, 12(8), 158; https://doi.org/10.3390/a12080158
Submission received: 19 June 2019 / Revised: 31 July 2019 / Accepted: 1 August 2019 / Published: 3 August 2019

Abstract

:
In the vehicle routing problem with simultaneous pickup and delivery (VRPSPD), customers demanding both delivery and pickup operations have to be visited once by a single vehicle. In this work, we propose a fast randomized algorithm using a nearest neighbor strategy to tackle an extension of the VRPSPD in which the fleet of vehicles is heterogeneous. This variant is an NP-hard problem, which in practice makes it impossible to be solved to proven optimality for large instances. To evaluate the proposal, we use benchmark instances from the literature and compare our results to those obtained by a state-of-the-art algorithm. Our approach presents very competitive results, not only improving several of the known solutions, but also running in a shorter time.

1. Introduction

The vehicle routing problem with simultaneous pickup and delivery (VRPSPD) [1,2,3,4,5,6,7,8,9], in which customers demanding both delivery and pickup operations have to be visited once by a single vehicle, is one of the main classes of the vehicle routing problem (VRP). This class has attracted research attention due to its applicability in numerous reverse logistic systems. For instance, in the bottled drinks industry, full bottles are delivered and empty ones are collected simultaneously from the customers. In fact, companies are increasingly faced with the task of managing the reverse flow of finished goods or raw materials [6]. In this context, one should consider together the logistics of distribution and the management of the reverse flow to minimize pickup and delivery operational efforts. Originally, the VRPSPD assumes a homogeneous fleet of vehicles. However, in many practical situations, companies employ a heterogeneous fleet of vehicles to satisfy customer demands. In this paper, we focus our attention on this variant of the VRPSPD. In fact, the heterogeneous vehicle routing problem with simultaneous pickup and delivery (HVRPSPD) has received research interest only in very recent years [10,11,12,13].
The HVRPSPD can be formally stated as follows: Let G = ( N , A ) be a complete directed graph with a set of nodes N = { 0 , 1 , , n } , where the node 0 represents the central depot and the remaining nodes denote the customers. Each customer i N - { 0 } has non-negative delivery d i and pickup p i demands. Each arc i j A is associated with a distance c i j from node i to node j. The fleet of vehicles involves T different vehicle types, and there is no restriction on the number of vehicles of each type. Every vehicle type t = 1 , 2 , , T is associated with a fixed cost f t , a variable cost per distance unit g t , and a capacity q t . We aim to determine the fleet composition and the set of vehicle routes that minimize the total cost, such that each vehicle travels exactly one route; each route starts and ends at the depot; each customer is visited only once by one of the vehicles; the vehicle completely satisfies the pickup and delivery demands of the customers on its route; the load carried by a vehicle must not exceed its capacity.
This problem has mainly been tackled by means of metaheuristics. In [10], a hybrid heuristic based on simulated annealing and local search is proposed to solve medium and large-size instances of the HVRPSPD. In [11], the authors propose a multi-label-based ant colony system algorithm to address the HVRPSPD. An initial solution is obtained by a nearest neighbor strategy, and then the ant colony system algorithm is applied to minimize the total number of vehicles used to attend the customers and the total travel distance performed by the vehicles. To evaluate their algorithm, they use benchmark problem instances adapted from other classes of the VRP. In [12], the authors present a mathematical model for the problem and propose some valid inequalities. In addition, a hybrid matheuristic based on the mathematical formulation in conjunction with a local search is presented. The state-of-the-art approach to tackle the HVRPSPD, to the best of our knowledge, appears in [13]. The authors propose the integration of an adaptive threshold strategy into a tabu search algorithm to avoid getting trapped in local minima. Their approach is based on neighborhood search and defines four different neighborhood structures to explore the solution space. It employs a giant tour representation to encode solutions and a decoding mechanism to partition the giant tour into feasible vehicle routes. For each giant tour, a cost network representation is constructed and a Djikstra algorithm is used to provide an optimal partition of the customers. A set of randomly generated problem instances is used to testify to the potentialities of the approach, and the authors argue that it can produce effective solutions in reasonable computation times.
In this paper, we propose a fast randomized algorithm using a nearest neighbor strategy to tackle the HVRPSPD. We use the same instances from [13], and computational experiments show that our approach presents very competitive results especially for large instances, not only improving several of the best known solutions, but also running in a shorter time.
The remainder of this paper is organized as follows. In Section 2, we present a mixed integer linear programming (MILP) formulation to the HVRPSPD and propose our fast randomized algorithm for tackling this problem. In Section 3, we provide computational experiments on benchmark instances from the literature. In Section 4, we present a detailed discussion of the results. Finally, in Section 5, we close the paper with some conclusions and future perspectives.

2. Materials and Methods

In this section, we first reintroduce the MILP formulation for the HVRPSPD proposed in [13] and then propose our fast randomized algorithm for tackling the problem.

2.1. MILP Formulation

Let N = { 1 , 2 , , n } be the set of all customers and N 0 = N { 0 } be the set of all customers and the depot. For each customer j N , d j and p j denote, respectively, its delivery and the pickup amounts. The fleet of vehicles is denoted by V = { 1 , 2 , , m } . Note that for the sake of modeling simplicity, the number of vehicles available of each type is already given in this formulation. This assumption, however, limits the decision on the fleet composition, and commonly, a sufficiently high number of vehicles has to be assumed for each vehicle type such that optimality can be guaranteed. For each vehicle k V , q k , f k , and g k denote, respectively, its capacity, fixed cost, and variable cost. In addition, for each pair of nodes i , j N 0 , c i j represents the distance between the nodes.
We aim to determine the fleet composition and vehicle routes that minimize the total routing cost. Let x i j k be the binary decision variable indicating whether vehicle k traverses arc i j or not. The continuous variable y i j k denotes the total load picked up by vehicle k while traversing arc i j . Conversely, the continuous variable z i j k denotes the total load to be delivered by vehicle k while traversing arc i j . The optimization problem can be formulated as follows.
min k V j N f k x 0 j k + k V i N 0 j N 0 c i j g k x i j k
s . t . k V i N 0 x i j k = 1 j N
i N 0 x i v k - j N 0 x v j k = 0 v N 0 , k V
j N x 0 j k 1 k V
y 0 j k = 0 j N , k V
z i 0 k = 0 i N , k V
j N 0 k V y v j k - i N 0 k V y i v k = p v v N
i N 0 k V z i v k - j N 0 k V z v j k = d v v N
i N k V y i 0 k = v N p v
j N k V z 0 j k = v N d v
y i j k + z i j k q k x i j k i N 0 , j N 0 , k V
x i j k { 0 , 1 } , y i j k 0 , z i j k 0 i N 0 , j N 0 , k V
The objective function (1) minimizes the total fixed costs of vehicles and variable transportation costs. Constraints (2) guarantee that each customer is visited exactly once. Constraints (3) impose the condition that each customer is served by the same vehicle. Constraints (4) ensure that each vehicle can serve one route at most. Constraints (5) guarantee that there is no demand picked up in the beginning of routes. Conversely, constraints (6) impose the condition that there is no demand for delivery in the end of routes. Constraints (7) and (8) are flow equations for pickup and delivery loads, respectively. Constraints (9) and (10), respectively guarantee that the sum of the inflow to the origin is equal to the total pickup demand and that the sum of the outflow from the origin is equal to the total delivery demand. Constraints (11) ensure that the capacity of the vehicles is respected throughout the routes. Finally, constraints (12) specify the domain of variables. The MILP model (1)–(12) contains O ( m n 2 ) binary variables and O ( m n ) constraints.

2.2. Nearest-Neighbor-Based Randomized Algorithm

The original nearest neighbor algorithm is perhaps the simplest heuristic for the traveling salesman problem (TSP) [14], which is a classical optimization problem closely related to the VRP. The key to this algorithm is to always visit the nearest unvisited city (customer). It is well known that the nearest neighbor algorithm, a popular choice for tour construction heuristics, works at an acceptable level for the Euclidean TSP, but it can produce very poor results for the general TSP [15,16].
We now introduce our nearest-neighbor-based randomized algorithm to tackle the HVRPSPD, as shown in Algorithm 1. In our approach, at each iteration of the main loop of the algorithm (line 2), a feasible solution to the HVRPSPD (i.e., a set of feasible routes, each of them associated with a vehicle type, to cover all customers) is constructed from scratch. We keep track of the best solution obtained during iterations, but it is not used to define a neighborhood structure or to guide the search for better solutions and, in this respect, it can be seen as a blind search. The construction of a feasible solution, however, is probabilistically guided by two alternative greedy criteria to select the next customer to be visited on the current route: the nearest neighbor or the first one from a given list of unvisited customers. In the sequel, we explain the construction of a feasible solution in more detail.
Algorithm 1: Nearest-Neighbor-Based Randomized Algorithm
parameters: Computation time limit  τ , probability  ρ of using the nearest neighbour strategy.
input: Set of c u s t o m e r s and d e p o t , set of vehicle t y p e s .
output: Set of vehicle routes ( b e s t R o u t e s ).
Algorithms 12 00158 i001
At each iteration, to obtain a feasible solution, we first generate a random permutation of all customers. We maintain a list of customers that were not served by a vehicle yet, named as u n v i s i t e d C u s t o m e r s , which is initially set with the random permutation. The routes of a feasible solution are generated sequentially. For each route, we randomly choose a vehicle among all types. The route always starts from the depot to the first customer from u n v i s i t e d C u s t o m e r s whose delivery and pickup demands respect the capacity of the vehicle used to serve the route. Thereafter, the next customer under consideration to be appended to the route, named as t r i a l , is chosen either by the ordering of u n v i s i t e d C u s t o m e r s or by the nearest neighbor strategy, according to a probability ρ . Every time t r i a l has been effectively added to the current route, it is removed from u n v i s i t e d C u s t o m e r s . And every time t r i a l has been proven to be infeasible to be part of the route (because of a vehicle capacity violation), we set its property i n f e a s i b l e = true , and then it is no more considered to be part of this route. The algorithm follows this process until there are no more customers that can be appended to the current route. In this case, the current route is closed, the feasibility of customers in u n v i s i t e d C u s t o m e r s is reestablished ( i n f e a s i b l e = false ), and a new route is opened. Routes are created until all customers have been visited ( u n v i s i t e d C u s t o m e r s is empty), when we obtain a feasible solution to the HVRPSPD.
The algorithm continues to generate feasible solutions until a time limit is reached. The best set of routes found during this whole process is deemed to be the final solution. To illustrate the core of our algorithm, consider the running example presented in Figure 1 with 4 customers and the depot.
Assume that the random permutation is u n v i s i t e d C u s t o m e r s = 3 - 4 - 1 - 2 and that the capacity of the vehicle chosen to serve the route is q = 12 . Since r o u t e is initially empty, the depot (i.e., node 0) is added to the route, and t r i a l is set to be the first customer from u n v i s i t e d C u s t o m e r s (i.e., customer 3). In this point, the route to be tested is 0 - 3 - 0 . We denote by l o a d i j the cargo of the vehicle while traversing the arc i j . Note that the vehicle must leave the depot loaded with all deliveries of the customers on the route and, conversely, return to the depot with all pickup demands of these customers. In Table 1, we check the feasibility of the route:
  • l o a d 03 = d 3 = 3 12 ;
  • l o a d 30 = l o a d 03 - d 3 + p 3 = 3 - 3 + 3 = 3 12 .
Since the capacity constraint is satisfied throughout the route, customer 3 is effectively added to it and removed from u n v i s i t e d C u s t o m e r s = 4 - 1 - 2 . At this point, we choose the next t r i a l customer either by the ordering of u n v i s i t e d C u s t o m e r s or by the nearest neighbor strategy, according to a probability ρ . Consider that the nearest neighbor strategy has been used to select the next customer this time, and thus customer 1 was chosen as t r i a l . Therefore, the route to be tested is 0 - 3 - 1 - 0 , as presented in Table 2. We check its feasibility:
  • l o a d 03 = d 3 + d 1 = 3 + 4 = 7 12 ;
  • l o a d 31 = l o a d 03 - d 3 + p 3 = 7 - 3 + 3 = 7 12 ;
  • l o a d 10 = l o a d 31 - d 1 + p 1 = 7 - 4 + 2 = 5 12 .
The capacity constraint remains satisfied all the way through the route, and therefore, customer 1 is added to it and removed from u n v i s i t e d C u s t o m e r s = 4 - 2 . Again consider that t r i a l has been chosen by the nearest neighbor strategy, and thus customer 4 was selected as t r i a l . Now the route to be tested is 0 - 3 - 1 - 4 - 0 , as shown in Table 3. We check its feasibility:
  • l o a d 03 = d 3 + d 1 + d 4 = 3 + 4 + 5 = 12 12 ;
  • l o a d 31 = l o a d 03 - d 3 + p 3 = 12 - 3 + 3 = 12 12 ;
  • l o a d 14 = l o a d 31 - d 1 + p 1 = 12 - 4 + 2 = 10 12 ;
  • l o a d 40 = l o a d 14 - d 4 + p 4 = 10 - 5 + 8 = 13 12 .
However, in this attempt, the capacity constraint is violated. Customer 4 is not removed from u n v i s i t e d C u s t o m e r s = 4 - 2 but is set to be infeasible (crossed out in the list). Assume now that t r i a l has been chosen by the ordering of u n v i s i t e d C u s t o m e r s . In this case, the first customer not set as infeasible (customer 2) was selected as t r i a l . Now the route to be tested is 0 - 3 - 1 - 2 - 0 , as presented in Table 4. We check its feasibility:
  • l o a d 03 = d 3 + d 1 + d 2 = 3 + 4 + 2 = 9 12 ;
  • l o a d 31 = l o a d 03 - d 3 + p 3 = 9 - 3 + 3 = 9 12 ;
  • l o a d 12 = l o a d 31 - d 1 + p 1 = 9 - 4 + 2 = 7 12 ;
  • l o a d 20 = l o a d 12 - d 2 + p 2 = 7 - 2 + 1 = 6 12 .
The capacity constraint is satisfied throughout the route, and therefore, customer 2 is added to it and removed from u n v i s i t e d C u s t o m e r s = 4 . At this point, u n v i s i t e d C u s t o m e r s is not empty, and for that reason, we do not have a feasible solution yet. In addition, u n v i s i t e d C u s t o m e r s only contains customers that are set as infeasible, and thus the current route cannot be expanded. This route is then closed and incorporated to the current set of routes under construction. The feasibility of unvisited customers is reestablished ( u n v i s i t e d C u s t o m e r s = 4 ), and a new route is opened. For the new route, assume that the capacity of the vehicle randomly chosen is q = 10 . The depot is added to the route, and t r i a l is set to be the first customer from u n v i s i t e d C u s t o m e r s (i.e., customer 4). The route to be tested is 0 - 4 - 0 , as shown in Table 5. We check its feasibility:
  • l o a d 04 = d 4 = 5 10 ;
  • l o a d 40 = l o a d 04 - d 4 + p 4 = 5 - 5 + 8 = 8 10 .
The capacity constraint is fulfilled, and therefore, customer 4 is added to the route and removed from u n v i s i t e d C u s t o m e r s = n i l . Since u n v i s i t e d C u s t o m e r s is empty, the route is closed and incorporated to the current set of routes. Finally, a feasible solution to the HVRPSPD is obtained.
Note that the computation time of the functions n e a r e s t N e i g h b o u r , f i r s t P o s s i b l y F e a s i b l e , and c h e c k R o u t e F e a s i b i l i t y is O ( n ) . Computing a feasible solution is Ω ( n 2 ) and O ( n 3 ) and, therefore, is quite efficient. The worst case scenario, however, is quite artificial, and the solution computation is indeed very fast.

3. Results

Our heuristic was implemented in Java 1.8.0. Experiments were performed on a PC Intel Core i7-7500 2.7 GHz 16 GB DDR3 RAM. Benchmark instances available in [13] were used in our computational study. These instances were grouped into 2 sets, each of them consisting of 14 instances. The first set contained problem instances with 10–100 customers, and the second set consisted of larger size problem instances with 150–550 customers.

3.1. Calibration of the Probability ρ

Since our heuristic is probabilistic, we randomly generated 4 new instances to calibrate the probability ρ of choosing the nearest neighbor strategy. The instances were created in the same manner as described in [13]. For the first set, we generated 2 calibration instances with 50 and 100 customers and for the second set, another 2 calibration instances with 350 and 550 customers.
A range of values for the probability ρ was set as { 0 . 00 , 0 . 25 , 0 . 50 , 0 . 75 , 0 . 90 , 0 . 95 , 0 . 99 , 1 . 00 } . Note that the bigger the ρ value is, the more greedy the algorithm is with regard to the nearest neighbor strategy. Conversely, the smaller the ρ value is, the more greedy the algorithm is with regard to the ordering of the customers. Nevertheless, the algorithm maintains its probabilistic fashion even for the extreme values of ρ = 0 . 00 , 1 . 00 since permutations are generated at random. For each calibration instance and for each value of the probability ρ , we ran 10 executions of our algorithm using a time limit τ = 60 s. In Figure 2, we present best and average values obtained for the instance with 100 customers. The results show that our randomized algorithm performs significantly better as the probability ρ increases. Very similar behavior was observed for the other 3 calibration instances.

3.2. Results for Benchmark Instances

In what follows, we present numerical results for the benchmark instances proposed in [13]. As suggested by the results of our calibration study, we used the 2 best values for the probability ρ = 0 . 99 , 1 . 00 to perform our experiments. For each benchmark instance and for each value of the probability ρ , we ran 100 executions of our nearest-neighbor-based randomized algorithm (NNRA) with a time limit τ = 60 s. Detailed experimental results are provided as Supplementary Materials.
To compare our approach to other methods, we used IBM ILOG CPLEX 12.8 as the underlying solver of the formulation (1)–(12). A time limit of 3600 s of computation was set for the solver, and all other settings were preserved at their defaults. For each instance, the total number of vehicles found in the best solution of the NNRA, regardless of their types, was considered as the available quantity of each vehicle type in the formulation. In addition, we present the results obtained by the adaptive hybrid local search (HLS) of Avci and Topaloglu [13]. To the best of our knowledge, HLS presents the best results to date. It is important to point out that HLS uses a time limit of 7200 s (used together with a convergence criterion), whereas NNRA uses only 60 s. Note, however, that the authors performed their computational study on a PC Pentium 4 3.00 GHz, and according to the website https://cpu.userbenchmark.com, the Intel Core i7-7500 2.7 GHz is 244% faster considering the peak overclocked single core mixed speed.
In Table 6, along with the characterization of the instances (where n and t represent respectively the number of customers and the number of vehicle types), we present the results achieved by the alternative approaches. For CPLEX, we present the best feasible solution found (if any), the lower bound (if the solver was able to at least solve the root relaxation), and the solver computation time (if the solver was able to instantiate the model without an out-of-memory error). For HLS, we display the best and average solution values (over 10 executions) and the average computation time. For NNRA, we present the best and average solution values (over 100 executions), the standard deviation σ , and the percentage difference Δ (%) between the results of the two heuristic algorithms, considering average solution values. A positive Δ value means that HLS obtained a better result, while a negative Δ value means that NNRA was able to find a better solution. We also present, for each instance, the average computation time to reach the best solution for each run (each execution, however, takes 60 s overall since we do not use any convergence criterion). The best known solutions are marked in bold font.
In Figure 3, we present the evolution of the computation time for each method as the size of the instances increases. Since the computational study for HLS was performed on a different machine, its computation time was rescaled by an appropriate factor of 2 . 44 - 1 . And in Figure 4, we present a comparative study of the quality of the solutions obtained by each method.

4. Discussion

We begin the discussions of our experimental analysis stating that the exact approach is only able to cope well with the smaller instances. CPLEX finds the proven optimal solutions for the first 3 instances, but then its performance worsens dramatically. HLS and NNRA obtain the optimal solution for these 3 instances as well. None of the heuristic algorithms stands out from the other for all instances. Taking as reference the set of instances with 10–100 customers, HLS performs much better than NNRA, obtaining best solutions for 12 (out of 14) instances relatively quickly, while NNRA ( ρ = 0 . 99 ) obtains best solutions for 5 (out of 14). Note that, for the first 3 instances of set 1, the algorithms achieved the proven optimal solutions. NNRA ( ρ = 1 . 00 ), however, obtains best solutions only for 2 instances of set 1, suggesting that being too greedy with regard to the nearest neighbor strategy, in general, can lead to poor solutions. We would like to stress, however, that the solutions are not too bad if we consider the average percentage difference Δ between the solutions of HLS and NNRA for these instances ( Δ 0 . 99 = 1 . 98 % and Δ 1 . 00 = 2 . 59 % on average).
Concerning set 2 with larger size instances with 150–550 customers, NNRA outperforms HLS. In fact, NNRA ( ρ = 0 . 99 ) achieves best solutions for 9 (out of 14) instances, while NNRA ( ρ = 1 . 00 ) obtains best solutions for 10 (out of 14) instances. Moreover, the computation time used by HLS increases significantly, while NNRA uses the same time limit of 60 s without compromising the comparative quality of its solutions. In addition, the percentage difference Δ between the solutions for this set of larger instances is very expressive, now favoring NNRA ( Δ 0 . 99 = - 9 . 05 % and Δ 1 . 00 = - 10 . 33 % on average). The overall average percentage difference also favors our approach ( Δ 0 . 99 = - 3 . 53 % and Δ 1 . 00 = - 3 . 87 % on average).
As a final remark, although the comparative results have been expressive, we would like to point out that due to the simplicity of our algorithm and the relatively poor results it obtained for small instances, we believe that the optimality gap of the solutions may still be considerable for the larger-size instances. In fact, since our algorithm is very fast, it could be used to provide initial solutions to more sophisticated search methods. For instance, our solution could be used to boost the search method proposed by Avci and Topaloglu [13].

5. Conclusions

In this paper, we proposed a fast algorithm that constructs solutions to the HVRPSPD by probabilistic alternating between two greedy criteria to select the next customer to be visited: a given ordering of customers or the nearest neighbor strategy. Our results show that our approach performs better when the probability ρ of using the nearest neighbor criteria is close to 1.
We used benchmark instances from the literature and compared our results to those obtained by a state-of-the-art algorithm. Our approach presented competitive results, particularly for the larger instances, improving several of the known solutions and running in a very short time.
As future work, we intend to adapt and apply our algorithm to tackle other classes of VRPs. In fact, the application to the VRPSPD (with a homogeneous fleet) is straightforward and, therefore, a natural research direction considering that the myriad of competitive approaches is broader. In addition, we envisage incorporating other criteria of exploring the solution space to find better solutions without compromising the simplicity of our algorithm. Another research direction is to use our algorithm to quickly obtain satisfactory feasible solutions and then apply local search methods to efficiently explore the neighborhood of these solutions.

Supplementary Materials

The following are available online at https://www.mdpi.com/1999-4893/12/8/158/s1, File solutions.zip: detailed data of the experimental results.

Author Contributions

Conceptualization, N.N. and R.B.S.; methodology, N.N., R.B.S., and P.R.P.; software, N.N. and R.B.S.; validation, N.N., R.B.S., and P.R.P.; formal analysis, N.N.; investigation, N.N. and R.B.S.; resources, P.R.P.; data curation, N.N. and R.B.S.; writing—original draft preparation, N.N.; writing—review and editing, N.N., R.B.S., and P.R.P.; supervision, N.N.; project administration, N.N. and P.R.P.; funding acquisition, P.R.P.

Funding

This research received no external funding.

Acknowledgments

The authors acknowledge Mustafa Avci and Seyda Topaloglu for providing us their HVRPSPD dataset.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
HLSAdaptive hybrid local search
HVRPSPDHeterogeneous vehicle routing problem with simultaneous pickup and delivery
MILPMixed integer linear programming
NNRANearest-neighbor-based randomized algorithm
TSPTraveling salesman problem
VRPVehicle routing problem
VRPSPDVehicle routing problem with simultaneous pickup and delivery

References

  1. Montané, F.A.T.; Galvão, R.D. A tabu search algorithm for the vehicle routing problem with simultaneous pick-up and delivery service. Comput. Oper. Res. 2006, 33, 595–619. [Google Scholar] [CrossRef]
  2. Ai, T.J.; Kachitvichyanukul, V. A particle swarm optimization for the vehicle routing problem with simultaneous pickup and delivery. Comput. Oper. Res. 2009, 36, 1693–1702. [Google Scholar] [CrossRef]
  3. Gajpal, Y.; Abad, P. An ant colony system (ACS) for vehicle routing problem with simultaneous delivery and pickup. Comput. Oper. Res. 2009, 36, 3215–3223. [Google Scholar] [CrossRef]
  4. Subramanian, A.; Drummond, L.; Bentes, C.; Ochi, L.; Farias, R. A parallel heuristic for the Vehicle Routing Problem with Simultaneous Pickup and Delivery. Comput. Oper. Res. 2010, 37, 1899–1911. [Google Scholar] [CrossRef]
  5. Çatay, B. A new saving-based ant algorithm for the Vehicle Routing Problem with Simultaneous Pickup and Delivery. Expert Syst. Appl. 2010, 37, 6809–6817. [Google Scholar] [CrossRef]
  6. Subramanian, A.; Uchoa, E.; Pessoa, A.A.; Ochi, L.S. Branch-and-cut with lazy separation for the vehicle routing problem with simultaneous pickup and delivery. Oper. Res. Lett. 2011, 39, 338–341. [Google Scholar] [CrossRef]
  7. Goksal, F.P.; Karaoglan, I.; Altiparmak, F. A hybrid discrete particle swarm optimization for vehicle routing problem with simultaneous pickup and delivery. Comput. Ind. Eng. 2013, 65, 39–53. [Google Scholar] [CrossRef]
  8. Avci, M.; Topaloglu, S. An adaptive local search algorithm for vehicle routing problem with simultaneous and mixed pickups and deliveries. Comput. Ind. Eng. 2015, 83, 15–29. [Google Scholar] [CrossRef]
  9. Kalayci, C.B.; Kaya, C. An ant colony system empowered variable neighborhood search algorithm for the vehicle routing problem with simultaneous pickup and delivery. Expert Syst. Appl. 2016, 66, 163–175. [Google Scholar] [CrossRef]
  10. Kececi, B.; Altiparmak, F.; Kara, I. The heterogeneous vehicle routing problem with simultaneous pickup and delivery: A hybrid heuristic approach based on simulated annealing. In Proceedings of the CIE 2014—44th International Conference on Computers and Industrial Engineering, Istanbul, Turkey, 14–16 October 2014; pp. 412–423. [Google Scholar]
  11. Tian, Y.; Wu, W.Q. A heuristic algorithm for vehicle routing problem with heterogeneous fleet, simultaneous pickup and delivery. Syst. Eng. Theory Pract. 2015, 35, 183. [Google Scholar] [CrossRef]
  12. Kececi, B.; Altiparmak, F.; Kara, I. A Hybrid Constructive Mat-heuristic Algorithm for the Heterogeneous Vehicle Routing Problem with Simultaneous Pick-up and Delivery. In Evolutionary Computation in Combinatorial Optimization; Chicano, F., Hu, B., García-Sánchez, P., Eds.; Springer International Publishing: Cham, Switzerland, 2016; pp. 1–17. [Google Scholar] [CrossRef]
  13. Avci, M.; Topaloglu, S. A hybrid metaheuristic algorithm for heterogeneous vehicle routing problem with simultaneous pickup and delivery. Expert Syst. Appl. 2016, 53, 160–171. [Google Scholar] [CrossRef]
  14. Lawler, E.; Lenstra, J.K.; Rinnooy Kan, A.H.G.; Shmoys, D.B. The Travelling Salesman Problem: A Guided Tour of Combinatorial Optimization; Wiley-Interscience Series in Discrete Mathematics And Optimization; John Wiley & Sons: Chichester, UK, 1985. [Google Scholar]
  15. Gutin, G.; Yeo, A.; Zverovich, A. Traveling salesman should not be greedy: Domination analysis of greedy-type heuristics for the TSP. Discret. Appl. Math. 2002, 117, 81–86. [Google Scholar] [CrossRef]
  16. Bang-Jensen, J.; Gutin, G.; Yeo, A. When the greedy algorithm fails. Discret. Optim. 2004, 1, 121–127. [Google Scholar] [CrossRef] [Green Version]
Figure 1. Running example with 4 customers and the depot. Pickup and delivery demands are marked in blue, and distances between customers are marked in red.
Figure 1. Running example with 4 customers and the depot. Pickup and delivery demands are marked in blue, and distances between customers are marked in red.
Algorithms 12 00158 g001
Figure 2. Solution cost for a calibration instance with 100 customers for different values of ρ .
Figure 2. Solution cost for a calibration instance with 100 customers for different values of ρ .
Algorithms 12 00158 g002
Figure 3. Plot of computation time versus instance.
Figure 3. Plot of computation time versus instance.
Algorithms 12 00158 g003
Figure 4. Plot of solution cost versus instance.
Figure 4. Plot of solution cost versus instance.
Algorithms 12 00158 g004
Table 1. Vehicle load of the tentative route 0 - 3 - 0 .
Table 1. Vehicle load of the tentative route 0 - 3 - 0 .
DepotCustomer 3
delivery3
pickup3
load33
Table 2. Vehicle load of the tentative route 0 - 3 - 1 - 0 .
Table 2. Vehicle load of the tentative route 0 - 3 - 1 - 0 .
DepotCustomer 3Customer 1
delivery34
pickup32
load775
Table 3. Vehicle load of the tentative route 0 - 3 - 1 - 4 - 0 .
Table 3. Vehicle load of the tentative route 0 - 3 - 1 - 4 - 0 .
DepotCustomer 3Customer 1Customer 4
delivery345
pickup328
load12121013
Table 4. Vehicle load of the tentative route 0 - 3 - 1 - 2 - 0 .
Table 4. Vehicle load of the tentative route 0 - 3 - 1 - 2 - 0 .
DepotCustomer 3Customer 1Customer 2
delivery342
pickup321
load9976
Table 5. Vehicle load of the tentative route 0 - 4 - 0 .
Table 5. Vehicle load of the tentative route 0 - 4 - 0 .
DepotCustomer 4
delivery5
pickup8
load58
Table 6. Comparative results for benchmark instances of Avci and Topaloglu [13]. HLS—adaptive hybrid local search; NNRA—nearest-neighbor-based randomized algorithm.
Table 6. Comparative results for benchmark instances of Avci and Topaloglu [13]. HLS—adaptive hybrid local search; NNRA—nearest-neighbor-based randomized algorithm.
CPLEXHLSNNRA ( ρ = 0 . 99 )NNRA ( ρ = 1 . 00 )
inst. n t sol.boundtime (s)bestavg.time (s)bestavg. σ Δ (%)time (s)bestavg. σ Δ (%)time (s)
1-01102620.2620.219.2620.2620.217.2620.2620.20.00.0%0.3665.0665.00.07.2%0.0
1-02102588.5588.511.1588.5588.514.7588.5588.50.00.0%0.1589.2589.20.00.1%0.0
1-03153445.1445.11969.7445.1445.122.7445.1445.10.00.0%2.3447.1447.10.00.4%0.0
1-04154460.4408.43600.0437.1437.124.5442.5448.10.72.5%25.5453.9453.90.03.8%1.1
1-05203543.3464.13600.0494.0498.927.1500.8502.71.20.8%24.8504.9504.90.01.2%0.3
1-06204640.8512.93600.0542.7551.926.7572.2580.02.85.1%24.5583.1583.10.05.7%2.0
1-073531814.4987.63600.01108.21123.456.61155.91178.95.54.9%29.01178.11180.64.15.1%28.8
1-083532263.91426.93600.01586.51601.254.71663.91681.26.85.0%29.51663.91679.57.94.9%29.4
1-095032872.4853.43600.0964.4990.291.4980.3993.44.90.3%28.1980.3991.75.20.1%31.2
1-105021039.13600.01197.71228.695.81230.01267.68.93.2%29.91240.21266.07.83.0%29.3
1-117531279.83600.01642.21673.9143.81620.71667.014.4−0.4%28.21625.81659.214.2−0.9%27.9
1-12752800.63600.0973.11002.5164.91012.01045.110.74.2%29.81010.91044.49.84.2%28.1
1-1310021078.33600.01299.51353.5288.51375.51417.010.64.7%29.91372.21410.712.44.2%30.2
1-1410021266.83600.01658.21678.2310.31595.31635.310.8−2.6%32.11587.31628.512.7−3.0%30.8
2-0115031210.83600.01499.41624.5592.51627.01654.417.21.8%28.71627.01639.79.60.9%30.4
2-0215031756.63600.02144.82152.5548.92425.72479.120.315.2%27.52369.72458.721.014.2%31.9
2-0320033673.13688.8831.63746.33830.931.83.9%31.93669.83787.536.82.7%31.7
2-0420021757.23600.02485.32682.5919.42453.82528.822.0−5.7%32.92433.82506.021.0−6.6%31.3
2-0525032639.62810.01448.12683.82769.724.0−1.4%30.02682.62732.518.0−2.8%32.0
2-0625022549.82605.61521.32528.92634.828.61.1%29.72516.42599.924.6−0.2%30.5
2-0730033205.03431.22440.42911.23000.929.0−12.5%31.42861.62959.426.1−13.8%31.1
2-0830023252.83364.62518.22867.72968.024.7−11.8%33.82861.82925.222.1−13.1%27.5
2-0935033457.93637.03770.13997.14136.441.513.7%29.33937.24055.241.411.5%29.8
2-1035023760.93897.53988.72622.72736.130.3−29.8%31.82613.82671.525.2−31.5%31.1
2-1140025809.56018.95662.43821.13941.937.9−34.5%30.53714.53855.636.1−35.9%30.2
2-1240024045.94447.05791.53441.53524.135.9−20.8%26.63397.13464.924.9−22.1%28.3
2-13500211,008.812,062.57200.08518.08794.887.3−27.1%30.58399.68660.789.7−28.2%30.9
2-14550212,762.013,046.37200.010,417.110,599.460.3−18.8%27.910,265.210,442.066.5−20.0%32.0

Share and Cite

MDPI and ACS Style

Nepomuceno, N.; Barboza Saboia, R.; Rogério Pinheiro, P. A Fast Randomized Algorithm for the Heterogeneous Vehicle Routing Problem with Simultaneous Pickup and Delivery. Algorithms 2019, 12, 158. https://doi.org/10.3390/a12080158

AMA Style

Nepomuceno N, Barboza Saboia R, Rogério Pinheiro P. A Fast Randomized Algorithm for the Heterogeneous Vehicle Routing Problem with Simultaneous Pickup and Delivery. Algorithms. 2019; 12(8):158. https://doi.org/10.3390/a12080158

Chicago/Turabian Style

Nepomuceno, Napoleão, Ricardo Barboza Saboia, and Plácido Rogério Pinheiro. 2019. "A Fast Randomized Algorithm for the Heterogeneous Vehicle Routing Problem with Simultaneous Pickup and Delivery" Algorithms 12, no. 8: 158. https://doi.org/10.3390/a12080158

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop