A New Efficient Transformation of Generalized Traveling Salesman Problem into Traveling Salesman Problem Arash Behzad Electrical Engineering Department University of California (UCLA) Los Angeles, CA 90095-1594 [email protected]

Mohammad Modarres Industrial Engineering Department Sharif University of Technology Tehran, Iran 11365-8639 [email protected]

Abstract—We develop a method to obtain an optimal solution for generalized traveling salesman problem (GTSP). The approach is to transform GTSP into a traveling salesman problem (TSP), whereby the number of nodes in the transformed TSP does not exceed the number of nodes in the original GTSP. This can be compared with some previous methods using the same approach, which the number of nodes in the transformed TSP is at least twice and in some methods three times the number of nodes in GTSP. Since GTSP as well as TSP are NP-hard, decreasing the size of the problem into half makes it much more efficient in comparison with the other methods. I. Introduction Generalized traveling salesman problem (GTSP) was introduced by Henry-Labordere [3]. Although a wide variety of real world problems can be modeled as GTSP ([1], [7], [8]), many practitioners are reluctant to use it for practical modeling purposes because of the complexity of finding an optimal or near-optimal solution. Thus, a great deal of efforts have been devoted by many researchers to develop efficient methods for this interesting model and so far a variety of approaches have been proposed ([2], [5], [9], [10]). Laporte and Nobert [9] developed an exact algorithm for GTSP by formulating an integer programming and finding the shortest Hamiltonian circuit through some clusters of nodes. Noon and Bean [5] proposed a Lagrangean relaxation algorithm and Fischetti et al. developed a branch and cut algorithm for the asymmetric version of the problem. In turn, transformation of a GTSP into traveling salesman problem (TSP) was first introduced by Lien and Ma [10], in which the number of nodes of the transformed TSP was relatively very large, in fact more than three times the number of nodes in the associated GTSP. Later, Dimitrijevic and Saric [2] developed another transformation to decrease the size of the corresponding TSP. In their method, the number of nodes of the TSP was twice the number of nodes of the original GTSP. In this paper, we propose a new method to obtain an optimal solution of GTSP. This is done by transforming GTSP into a single TSP. There are two reasons to believe that this is an appropriate approach. First, GTSP is an extension of TSP and we can naturally take advantage of the similarities between them. Second, there exist many efficient methods for TSP. As a matter of fact, most of the existing methods for GTSP, exact or approximate, are some kind of extensions of TSP methods. Since TSP is NP-hard by nature, increasing the number of nodes increases the process time of the algorithm exponentially and, hence, it is vital to have a transformation with less number of nodes. Specifically, in this paper, we develop and investigate a new transformation, in which the number of nodes of TSP is equal to that of the original GTSP.

Although our method is a modification of the one proposed by Dimitrijevic and Saric [2], it is clearly much more efficient due to the reduction in number of nodes. The remainder of the paper is structured as the following: In Section II, we review the definition as well as some properties of both GTSP and TSP. In Section III, our proposed transformation of GTSP into TSP is introduced. Finally, we provide an example in Section IV to illustrate the method. II. GTSP and TSP Preliminaries Traveling salesman problem (TSP) is represented by a graph G = (V, A), where V is the set of nodes and A is the set of arcs (or edges). Associated with each arc (i, j ) ∈ A , a cost (or distance) of c(i, j) is defined. A TSP is defined to be symmetric if and only if c(i, j ) = c( j , i ), ∀i, j ∈V . Furthermore, a TSP is Euclidean if and only if c(i, j ) + c( j , k ) ≥ c(i, k ), ∀i, j , k ∈V . The objective in TSP is to find a Hamiltonian cycle with the minimal cost, where a Hamiltonian cycle is a closed path that visits each node once and only once.

In turn, in generalized traveling salesman problem (GTSP) the set of nodes (V) is the union of p clusters, which may or may not be intersected. Each feasible solution of GTSP, called a g-tour, is a closed path that includes at least one node from each cluster and the objective is to find a g-tour with the minimum cost. In a special case of GTSP, called E-GTSP, each cluster is visited exactly once. III. Transformation of GTSP into a TSP

In this section, we develop a novel method to solve GTSP. This is done by transforming the problem into a TSP. As a matter of fact, the method we propose is a modification of the transformation developed by Dimitrijevic and Saric [2]. It should be mentioned that although in our transformation the underlying TSP is represented by a directed graph, the graph associated with the GTSP is not necessarily a directed one. We do not restrict the problem to be symmetric or Euclidean. However, for the sake of presentation simplicity, we assume that the graph of GTSP is directed and that there are no intracluster arcs in the graph. We further assume that the clusters are non-intersected and the objective is to find a minimal g-tour that visits each cluster exactly once (that is E-GTSP). As Lien and Ma [10] have shown, the aforementioned assumptions are not restrictive and every GTSP can be easily transformed into our problem. Definition 1: Consider a GTSP with p clusters, represented by a graph G = (V, E). Let v r i represent the ith node of cluster r. We define a TSP on a directed graph of G’ associated with G such that,

a) The set of nodes of G and G’ are identical. b) All nodes of each cluster of G are connected by arcs into a cycle in G’. We refer to the node that succeeds v r i in the cycle as v r i (s ) . c) The elements of the cost matrix of G’ are defined as c ' (v r i , v r i ( s ) ) = 0

(1)

and

c ' (v r i , v t j ) = c (v r i ( s ) , v t j ) + M , r ≠ t , where

( 2)

M>

∑ c(i, j ).

(3)

( i , j )∈E

Clearly, if based on relation (2), the cost c' (v r i , v t j ) becomes ‘infinity,’ it implies that v r i is not connected to v t j . Definition 2: We define a path in G’ as a Cluster Path if it consists of all nodes of only one cluster. Definition 3: We refer to a Hamiltonian cycle in G’ whose cost is less than (p + 1)M as a Clustered Hamiltonian Cycle (or simply, C-Hamiltonian Cycle). Lemma 1: Every C-Hamiltonian Cycle only traverses along cluster paths (That is, it enters and leaves each cluster exactly once). Proof. The definition of cost matrix G’ implies that the cost of moving from one cluster to another is at least M. Since every Hamiltonian cycle visits all the clusters, its cost is at least pM. However, if it does not traverse along the cluster paths, it enters at least one of the clusters more than once. The latter implies that the total cost of the Hamiltonian cycle cannot be less than (p+1)M, which completes the proof. Definition 4: We define a one-to-one correspondence between C-Hamiltonian cycles in G’ and g-tours in G in the following fashion: a) Consider a C-Hamiltonian of G’ and connect the first nodes of its cluster paths together in the order of their corresponding clusters. The result is a g-tour of GTSP (or more precisely, EGTSP). b) Consider a g-tour in G that includes L → v r i → v t j → L , r ≠ t . Replace v r i with the rth cluster path of G’ starting with v r i , and then connect the last node of this path to the next cluster path starting with v t j . Clearly, the result of the above procedure forms a Hamiltonian cycle. Theorem 2: The cost of every g-tour in G is equal to the cost of the corresponding CHamiltonian cycle in G’ less pM. Proof. The proof is straight forward based on the definition of the cost matrix, definition 4, and Lemma 1. Clearly, since pM is constant, it has no impact on the optimal solution of GTSP. IV. Numerical Example

Consider a GTSP defined on graph G, as shown in Fig. 1. A TSP is defined on the basis of definition 1 and is represented by G’ in Fig. 2. The nodes of each cluster are cycled in G’ by solid arcs as depicted in Fig. 2. The matrices C and C’ are the cost matrices of GTSP and TSP, respectively. The optimal solution of TSP as well as its corresponding solution in GTSP are illustrated by dash-dot arcs in Fig. 1. The optimal cost of TSP and GTSP are equal to 7 + 3M and 7, respectively. V. Conclusions

In this paper, we introduced a new transformation of GTSP into TSP. What makes this approach distinguished from the other transformations is that the number of nodes of the transformed TSP does not exceed the number of nodes of the original GTSP.

G: V

V21

1

1

V12

V22

CL1

CL2

CL3

V31

V32

V33

Figure 1. Illustration of the GTSP and its optimal solution.

G’: V21

V11 V12

V22

V31

V32

V33

Figure 2. Illustration of the associated TSP and its optimal solution. c(v11, v11) = ∞  c(v12 , v11) = ∞  c(v 21, v11) = 6  C = c(v 2 2 , v11 ) = 2  c(v31, v11 ) = 9  c(v32 , v11 ) = 8  c(v33 , v11) = 4 

c(v11, v12 ) = ∞ c(v11, v 21) = 5 c(v11, v 2 2 ) = 7 c(v11, v31 ) = 4 c(v11, v32 ) = 6 c(v11, v33 ) = 2 c(v12 , v12 ) = ∞ c(v 21, v12 ) = 3 c(v 2 2 , v12 ) = 1 c(v31, v12 ) = 7 c(v 32 , v12 ) = 4 c(v33 , v12 ) = 7

 

c(v12 , v 21) = 8 c(v12 , v 2 2 ) = 9 c(v12 , v31 ) = 3 c(v12 , v32 ) = 1 c(v12 , v33 ) = 5   c(v 21, v 21) = ∞ c(v 21, v 2 2 ) = ∞ c(v 21, v 31 ) = 4 c(v 21, v 32 ) = 2 c(v 21, v33 ) = 4   c(v 2 2 , v 21) = ∞ c(v 2 2 , v 2 2 ) = ∞ c(v 2 2 , v31 ) = 5 c(v 2 2 , v 32 ) = 6 c(v 2 2 , v 33 ) = 1   c(v31, v 21 ) = 9 c(v31, v 2 2 ) = 3 c(v 31, v31 ) = ∞ c(v 31, v32 ) = ∞ c(v31, v33 ) = ∞   c(v 32 , v 21) = 6 c(v 32 , v 2 2 ) = 5 c(v32 , v 31) = ∞ c(v32 , v 32 ) = ∞ c(v 32 , v33 ) = ∞   c(v 33 , v 21 ) = 9 c(v33 , v 2 2 ) = 7 c(v 33 , v 31) = ∞ c(v33 , v32 ) = ∞ c(v33 , v 33 ) = ∞  

 c(v11, v11) = ∞ c(v11, v12 ) = 0 c(v11, v21) = 8 + M c(v11, v22 ) = 9 + M c(v11, v31) = 3 + M c(v11, v32 ) = 1 + M c(v11, v33 ) = 5 + M   1 1 1 1 1 2 1 2 1 3 1 3 1 3 c(v 2 , v 1) = 0 c(v 2 , v 2 ) = ∞ c(v 2 , v 1) = 5 + M c(v 2 , v 2 ) = 7 + M c(v 2 , v 1) = 4 + M c(v 2 , v 2 ) = 6 + M c(v 2 , v 3 ) = 2 + M     c(v21, v11) = 2 + M c(v21, v12 ) = 1 + M c(v21, v21) = ∞ c(v 21, v 22 ) = 0 c(v21, v31) = 5 + M c(v21, v32 ) = 6 + M c(v21, v33 ) = 1 + M   2 1 2 1 2 2 2 2 2 3 2 3 2 3  C' = c(v 2 , v 1) = 6 + M c(v 2 , v 2 ) = 3 + M c(v 2 , v 1) = 0 c(v 2 , v 2 ) = ∞ c(v 2 , v 1) = 4 + M c(v 2 , v 2 ) = 2 + M c(v 2 , v 3 ) = 4 + M     c(v31, v11) = 8 + M c(v31, v12 ) = 4 + M c(v31, v21) = 6 + M c(v31, v22 ) = 5 + M c(v31, v31) = ∞ c(v31, v32 ) = 0 c(v31, v33 ) = ∞   3 1 3 1 3 2 3 2 3 3 3 3 3 3  c(v 2 , v 1) = 4 + M c(v 2 , v 2 ) = 7 + M c(v 2 , v 1) = 9 + M c(v 2 , v 2 ) = 7 + M c(v 2 , v 1) = ∞ c(v 2 , v 2 ) = ∞ c(v 2 , v 3 ) = 0   3 1 3 1 3 2 3 2 3 3 3 3 3 3  c(v 3, v 1) = 9 + M c(v 3, v 2 ) = 7 + M c(v 3, v 1) = 9 + M c(v 3, v 2 ) = 3 + M c(v 3, v 1) = 0 c(v 3, v 2 ) = ∞ c(v 3, v 3 ) = ∞  

References

[1] J. Bovet, “The Selective Traveling Salesman Problem ,” in Proc. Of EURO VI Conference, Vienna, 1993. [2] V. Dimitrijevic and Z. Saric, ”Efficient Transformation of the Generalized Traveling Salesman Problem into the Traveling Salesman Problem on Digraphs,” Information Sci., 102, 65110, 1997. [3] A. L. Henry-Labordere, “The Record Balancing Problem: A Dynamic Programming Solution of a Generalized Traveling Salesman Problem,” RIBO B-2, 736-743, 1969. [4] J. J. Fischetti, S. Gonzalez and P. Tota, “A Branch-and-Cut Algorithm for the Symmetric Generalized Traveling Salesman Problem,” Opns. Res. 45, 378-394, 1997. [5] C. E. Noon and J. C. Bean, “A Lagrangean based Approach for Asymmetric Generalized Traveling Salesman Problem,” Opns. Res. 39, 623-632, 1991. [6] G. Laporte, Location-Routing Problems. In B. L. Golden and A. A. Assad (eds.), Vehicle Routing: Methods and Studies, North-Holland, Amsterdam, 1988. [7] G. Laporte, “The Traveling Salesman Problem: An Overview of Exact and Approximate Algorithms,” European J. Opnl. Res, 59, 231-247, 1992. [8] G. Laporte, A. Asef-Vaziri and C. Srikandarajah, “Some Applications of the Generalized Traveling Salesman Problem,” J. Opnl. Res. Soc. 47, 1461-1467, 1996. [9] G. Laporte, Y. Nobert and S. Taillefer, “Solving a Family of Multi-Depot Vehicle Routing and Location-Routing Problems,” Transp. Sci. 22, 161-172, 1988. [10] Y. Lien, E. Ma and B. W. Wah, Transformation of the Generalized Traveling Salesman Problem into the Standard Traveling Salesman Problem,” Information Sci. 74, 177-189, 1993.

A New Efficient Transformation of Generalized ...

In a special case of GTSP, called E-GTSP, each cluster is visited exactly once. III. ..... Vehicle. Routing: Methods and Studies, North-Holland, Amsterdam, 1988.

151KB Sizes 1 Downloads 179 Views

Recommend Documents

A New Efficient Transformation of Generalized ...
Mohammad Modarres. Electrical Engineering Department. Industrial Engineering Department. University of California (UCLA). Sharif University of Technology.

Efficient Minimization Method for a Generalized Total ... - CiteSeerX
Security Administration of the U.S. Department of Energy at Los Alamos Na- ... In this section, we provide a summary of the most important algorithms for ...

Efficient Closed-Form Solution to Generalized ... - Research at Google
formulation for boundary detection, with closed-form solution, which is ..... Note the analytic difference between our filters and Derivative of Gaussian filters.

The fixed scale transformation (FST) is a new ...
Physica A 173 (1991) 1-21. North-Holland. FIXED SCALE TRANSFORMATION APPLIED TO DIFFUSION. LIMITED AGGREGATION AND DIELECTRIC BREAKDOWN. MODEL IN THREE DIMENSIONS. A. VESPIGNANI and L. PIETRONERO. Dipartimento di Fisica, Universit~ di Roma "La Sapien

A CONCISE PARAMETRISATION OF AFFINE TRANSFORMATION ...
For example, when we consider rigid transformations inside affine transformations, we can assure that an interpolation of rigid transformations is always rigid. The condition (VI) is mandatory, for example, for efficient creation of deformation anima

Local Diagonal Extrema Pattern: A New and Efficient ...
[8] Murala and Wu, “Local ternary co-occurrence patterns: A new feature descriptor for. MRI and CT image retrieval,” Neurocomputing, 119: 399-412, 2013. 20. 40. 60. 80. 100. 40. 50. 60. 70. 80. Number of Top Matches. A. R. P. (%. ) LBP. LTP. CSLB

pdf-1471\a-new-you-volume-1-dark-tales-of-transformation ...
Sign in. Loading… Whoops! There was a problem loading more pages. Retrying... Whoops! There was a problem previewing this document. Retrying.

A Generalized Mechanism for Perception of Pitch ... - Semantic Scholar
Jan 14, 2009 - (Oz, O1, O2, Iz). Frontal electrodes were se- lected based on regions of interest defined for the EAN in previous studies (Koelsch et al.,. 2007).

A test of the mechanisms behind avian generalized ...
the individuals–plot area relationship for subsets of a database compiled from the ... scale dependence, species–area, survey methodology, territory mapping.

a generalized model for detection of demosaicing ... - IEEE Xplore
Hong Cao and Alex C. Kot. School of Electrical and Electronic Engineering. Nanyang Technological University. {hcao, eackot}@ntu.edu.sg. ABSTRACT.

A novel theory of experiential avoidance in generalized ...
theory and data that led to our current position, which is that individuals with GAD are more .... there is still room to improve upon our understanding of the.

On the geometry of a generalized cross-correlation ...
defined for analyzing functional connectivity in brain images, where the main idea ... by a postdoctoral fellowship from the ISM-CRM, Montreal, Quebec, Canada.

On the geometry of a generalized cross-correlation ...
Random fields of multivariate test statistics, with an application to shape analysis. Annals of Statistics 36, 1—27. van Laarhoven, P., Kalker, T., 1988. On the computational of Lauricella functions of the fourth kind. Journal of. Computational and

A Generalized Mechanism for Perception of Pitch ... - Semantic Scholar
Jan 14, 2009 - Subjects had no prior exposure to the musical system used in the present study. All research was approved by the Committee for the Pro- tection of Human Subjects at UC Berkeley. Procedure. Participants were seated in a sound-attenuated

A GENERALIZED VECTOR-VALUED TOTAL ...
Digital Signal Processing Group. Pontificia Universidad Católica del Perú. Lima, Peru. Brendt Wohlberg. ∗. T-5 Applied Mathematics and Plasma Physics.

A generalized Tullock contest
Depending on the litigation system, losers have to compensate winners for a portion of their legal ... By simultaneously solving best response functions (8), and accounting for symmetric. Nash equilibrium we obtain the ... In a standard Tullock conte

A generalized quantum nonlinear oscillator
electrons in pure crystals and also for the virtual-crystal approximation in the treatment of .... solvable non-Hermitian potentials within the framework of PDMSE.

A generalized inquisitive semantics.
the definition of inquisitive semantics can be easily reformulated in such a way ... Recall that a P-index (or a P-valuation) is a map from P to {0, 1}, and we.

A Generalized Complementary Intersection Method ...
The contribution of this paper ... and stochastic collocation method. However, the ... Contributed by the Design Automation Committee of ASME for publication in.

A generalized inquisitive semantics.
the definition of inquisitive semantics can be easily reformulated in such a way ..... The second weak distribution law is ..... mative content in the classical way.

New Insights on Generalized Nash Games with Shared Constraints ...
New Insights on Generalized Nash Games with Shared Constraints: Constrained and Variational Equilibria. Ankur A. Kulkarni. Uday V. Shanbhag. Abstract—We .... in the community of operations research and computational game theory it has been a common