1 / 38

Euclidean Vehicle Routing with Allocation

Euclidean Vehicle Routing with Allocation. Reto Spöhel Joint work with Jan Remy and Andreas Weissl. TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: A A A A A. The Traveling Salesman Problem. The Traveling Salesman Problem (TSP)

floyd
Télécharger la présentation

Euclidean Vehicle Routing with Allocation

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Euclidean Vehicle Routing with Allocation RetoSpöhel Joint work with Jan Remy and Andreas Weissl TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.: AAAAA

  2. The Traveling Salesman Problem • The Traveling Salesman Problem (TSP) • Input: edge-weighted graph G • Output: Hamilton cycle in G with minimum edge-weight • Motivation: • Traveling salesman ;-) • Complexity: • NP-hard • Admits no constant factor approximation [Sahni and Gonzalez 76]

  3. Metric TSP • Metric TSP • Input: edge-weighted graph G satisfying triangle inequality • Output: Hamilton cycle in G with minimum edge-weight • Motivation: • real-world problems usually satisfy triangle inequality • Complexity: • still NP-hard • admits 3/2-approximation [Christofides 76] • admits no PTAS [Aroraet al. 98]

  4. Euclidean TSP • Euclidean TSP • Input: points P ½R2 • Output: tour ¼ through P with minimal length • Complexity: • still NP-hard [Papadimitriou 77] • admits PTAS [Arora 96; Mitchell 96]

  5. Euclidean TSP • Euclidean TSP • Input: points P ½R2 • Output: tour ¼ through P with minimal length • Complexity: • still NP-hard [Papadimitriou 77] • admits PTAS [Arora 96; Mitchell 96] • …even one with complexity O(n log n). Arora (1997) There is a randomized PTAS for Euclidean TSP with complexityn logO(1/²) n. Rao, Smith (1998) There is a randomized PTAS for Euclidean TSP with complexityO(n log n).

  6. VRAP • (Euclidean) VehicleRoutingwithAllocation (VRAP) • Input: points P ½R2 , constant ¯¸ 1 • Output: tour ¼ through subset T µ P minimizing • Motivation: • salesman visits not all customers • customers not visited go to next tourpoint, which is more expensive by a factor of ¯.

  7. VRAP • (Euclidean) VehicleRoutingwithAllocation (VRAP) • Input: points P ½R2 , constant ¯¸ 1 • Output: tour ¼ through subset T µ P minimizing • Complexity: • NP-hard, since setting ¯ > 2 yields Euclidean TSP • as forEuclidean TSP, thereexists a quasilinear PTAS Remy, S., Weissl (WADS ´07) There is a randomized PTAS for VRAP with complexityO(n log5n).

  8. Steiner VRAP • Steiner VRAP • Input: points P ½R2 , constant ¯¸ 1 • Output: subset T µ P, set of points S ½R2(Steiner Points), tour ¼ through T [ S minimizing • Motivation: • salesmanmay also stop en route to servecustomers

  9. Steiner VRAP • Steiner VRAP • Input: points P ½R2 , constant ¯¸ 1 • Output: subset T µ P, set of points S ½R2(Steiner Points), tour ¼ through T [ S minimizing … • Complexity: • NP-hard • admits PTAS • even a quasilinear one Armon, Avidor, Schwartz(ESA ´06) There is a randomized PTAS for Steiner VRAP with complexity nO(1/²). Remy, S., Weissl (WADS ´07) There is a randomized PTAS for Steiner VRAP with complexity n logO(1/²) n.

  10. Our techniques • Finding a good solution for VRAP means • finding a good set of tourpointsT µ P • finding a good tour on this set T simultaneously. • a) is essentially a facility location problem. • We use the adaptive dissection technique, due to [Kolliopoulos and Rao 99] • b) is Euclidean TSP. • We use dynamic programming on sparse Euclidean spanners, due to [Rao and Smith 98] • To put both ideas into perspective, we start by explaining the basics of dynamic programming in quadtrees, as introduced in [Arora 96] for Euclidean TSP 3 2 1

  11. Preliminaries • We assume that the input points P • have odd integer coordinates • lieinside a square whose sidelength is • a power of 2 • of order O(n/²) • This is ok, since every (1+²/2)-approximation for the rescaled and shifted input P’ corresponds to a (1+²)-approximation for the original input P. P

  12. Preliminaries • We assume that the input points P • have odd integer coordinates • lieinside a square whose sidelength is • a power of 2 • of order O(n/²) • This is ok, since every (1+²/2)-approximation for the rescaled and shifted input P’ corresponds to a (1+²)-approximation for the original input P. P‘

  13. Preliminaries • We assume that the input points P • have odd integer coordinates • lieinside a square whose sidelength is • a power of 2 • of order O(n/²) • This is ok, since every (1+²/2)-approximation for the rescaled and shifted input P’ corresponds to a (1+²)-approximation for the original input P. P‘

  14. Preliminaries • We assume that the input points P • have odd integer coordinates • lieinside a square whose sidelength is • a power of 2 • of order O(n/²) • This is ok, since every (1+²/2)-approximation for the rescaled and shifted input P’ corresponds to a (1+²)-approximation for the original input P. P

  15. Quadtrees 1 • Choose origin of coordinate system (= center of large square) randomly • thisistheonlysource of randomnessin all algorithms

  16. Quadtrees • Split large square recursively into 4 smaller squares until squares have sidelength 2 • Since bounding square has sidelength O(n), resulting tree has O(n2) nodes (squares) and depth O(log n)

  17. Quadtrees • Truncatedquadtree: stop subdivision at empty squares. • remaining tree has O(n log n) nodes

  18. Portal-respecting solutions • Place O(log n/²) many equidistant points (‘portals’) on the boundary of each square. • Imposerestriction: Salesman may enter/leave a square only via its portals. Lemma In expectation, detouring all edges of the optimal salesmantour via the nearest portal increases its length only by a factor of 1+².

  19. Portal-respecting solutions • Place O(log n/²) many equidistant points (‘portals’) on the boundary of each square. • Imposerestriction: Salesman may enter/leave a square only via its portals. • Intuition: fortwofixedpoints: • good Lemma In expectation, detouring all edges of the optimal salesmantour via the nearest portal increases its length only by a factor of 1+².

  20. Portal-respecting solutions • Place O(log n/²) many equidistant points (‘portals’) on the boundary of each square. • Imposerestriction: Salesman may enter/leave a square only via its portals. • Intuition: fortwofixedpoints: • bad • butunlikely! Lemma In expectation, detouring all edges of the optimal salesmantour via the nearest portal increases its length only by a factor of 1+².

  21. Portal-respecting solutions • Place O(log n/²) many equidistant points (‘portals’) on the boundary of each square. • Imposerestriction: Salesman may enter/leave a square only via its portals. • i.e., thereis an expectednearly-optimalportal-respectingsalesman tour. • Wetry to find the best portal-respectingsalesman tour bydynamicprogramming in thequadtree. Lemma In expectation, detouring all edges of the optimal salesmantour via the nearest portal increases its length only by a factor of 1+².

  22. Dynamic programming in quadtrees • For a given square Q, guess which portals are used by salesman tour, and enumerate all possible configurations C. • For each configuration C, calculate estimate for the length of a good tour inside Q, subject to the restrictions given by C: • If Q is a leaf of the quadtree, by brute force. • If Q is an inner node of the quadtree, by recursing to its four children. C

  23. Running time • Working in a non-truncated quadtree, we have to consider O(n2) squares. For each of these we have to consider2O(logn/²) = nO(1/²) configurations, and the estimate for each configuration can be calculated in time nO(1/²). • We obtain a PTAS with running time O(n2) ¢nO(1/²)¢nO(1/²)= nO(1/²) • This is essentially the technique used in the PTAS for Steiner VRAP by Armonet al. • to achieve quasilinear time, we can only use polylogarithmic time per square. In particular, we can only consider polylogarithmically many configurations per square. Armon, Avidor, Schwartz(ESA ´06) There is a randomized PTAS for Steiner VRAP with complexity nO(1/²).

  24. Improving the running time Patching Lemma (Arora) • Idea: proceedbottom-upthroughquadtree and modifyeachsquarewithtoomanycrossingsbyintroducing line segments parallel to sides. The optimal solution can be modified such that it crosses the boundary of every square at most O(1/²) many times.In expectation, this increases the length of the tour only by a factor of 1+². • The total length of thenew line segmentsisat most 3x •  modification on lowlevels of thequadtreearecheap. x

  25. Improving the running time Patching Lemma (Arora) • i.e., thereis an expectednearly-optimalportal-respectingsalesman tour whichforeverysquareusesonly O(1/²) many of the O(log n) portals. • Looking for such a ‘patched’ solution, we only have to considerO(log n)O(1/²) =logO(1/²) n configurations per square! The optimal solution can be modified such that it crosses the boundary of every square at most O(1/²) many times.In expectation, this increases the length of the tour only by a factor of 1+².

  26. Improving the running time Patching Lemma (Arora) • We only have to consider logO(1/²) n configurations per square. • Working in a truncatedquadtree, we obtain a PTAS with running time O(n log n) ¢logO(1/²) n ¢logO(1/²) n = n logO(1/²) n The optimal solution can be modified such that it crosses the boundary of every square at most O(1/²) many times.In expectation, this increases the length of the tour only by a factor of 1+². Arora (1997) There is a randomized PTAS for Euclidean TSP with complexityn logO(1/²) n.

  27. Improving the running time Patching Lemma (Arora) • Combiningtheextendedpatchinglemmawithstandardquadtreetechniquesforfacilitylocationproblems[Arora, Raghavan, Rao 98], weobtain The optimal solution can be modified such that it crosses the boundary of every square at most O(1/²) many times.In expectation, this increases the length of the tour only by a factor of 1+². Lemma The Patching Lemma extends to Steiner VRAP. Remy, S., Weissl (WADS ´07) There is a randomized PTAS for Steiner VRAP with complexity n logO(1/²) n.

  28. Advancedtechniques • These techniques also easilyyield an nlogO(1/²) n-PTASfor (non-Steiner) VRAP. Improvingthis to O(n log5 n) requirestwoadvancedtechniques, onefortheEuclidean TSP part of theproblem, and oneforthefacilitylocationpart of theproblem. • Euclidean TSP [Rao and Smith 98] : • Movethe ‚patching‘ fromtheanalysis to thealgorithmitself. • Key concept: sparseEuclideanspanner • Facilitylocation[Kolliopoulos and Rao 99] : • Makerecursivecalls of dynamicprogramdepend on whereweguessthefacilities (tourpoints) to be (‚adaptive dissection‘) • Key concept: zoom tree(replacesquadtree) 2 3

  29. 2 Sparse Euclidean spanners • Patchingrevisited: • In Arora’s technique, the ‘patching’ is not part of the algorithm – we simply know a nearly-optimal patched solution exists, and try to find it by dynamic programming. • Rao and Smith improved Arora’s running time by making the ‘patching’ part of the algorithm. • A (1+²)-spanner Son P is a straight-line graph on P such that for every two points the shortest path in S is at most (1+²) time their Euclidean distance. • A ‚short‘ (1+²)-spannercanbecomputed in time O(n log n) [Gudmundsson, Levcopoulos, and Narasimhan 00] • similar to Arora‘stechnique, such a spannercanbepatched to obtain a graphwhich has O(1/²) manycrossingswitheverysquare of thequadtree.

  30. Sparse Euclidean spanners • A betteralgorithmforEuclidean TSP: • Computespanner on P • Patch spanner ( sparse spanner) • Dynamic programming in quadtree, but instead of portals use edges of sparse spanner. • We now have constantly many configurations per square! • We obtain a PTAS with running time O(n log n) ¢O(1) ¢O(1)= O(n log n) Rao, Smith (1998) There is a randomized PTAS for Euclidean TSP with complexityO(n log n).

  31. Adaptive dissection 3 • To improvetherunning time forfacilitylocationproblems, Kolliopoulos and Rao introducedtheadaptive dissectiontechnique: • thequadtreeisreplacedby a morecomplicatedstructure, a zoom tree • thestructure of the zoom treechangeswiththelocation of thefacilities(in ourcase, the tour points T). • Guessingthelocation of the tour pointsisdonebyguessinghow to best recurse. • Key Advantage: constantlymanyportalsper rectanglesuffice! • Downside: have to do dynamicprogramming in larger structure, whichisessentiallytheunion of the zoom treesfor all possiblechoices of Tµ P

  32. The zoom tree • The zoom treealternatesbetweensplitstepsand zoom steps. • splitstepsworkverysimilar to recursion in quadtree. • zoom stepslook as follows: we zoom on bounding box of tourpoints( + somesafetymargin)

  33. Howdoesthishelp? • Twoconceptualadvantages: • On one hand, directlyzooming on thetourpointsskipslevels in between, whichmightintroduce large errors in thequadtreetechnique. • On theother hand, in theresultingnearly-optimalsolution, a point isnot necessarilyallocated to itsnearesttourpoint, butpossibly to a different nearby point. added flexibility in analysis.

  34. Running time • Running time isdominatedby zoom steps • ThereareO(n log2 n) pairs of rectangleswhichcorrespond to zoom steps. For each such pair, the zoom stepcanbeperformed in timeO(log3 n). • Weobtain a running time of O(n log2 n) ¢O(1) ¢O(log3n) = O(n log5 n) Remy, S., Weissl (WADS ´07) There is a randomized PTAS for VRAP with complexityO(n log5n).

  35. Concludingremarks • Bothalgorithmsextend to higherdimensions d, yieldingrunningtimes of O(n logd+3 n) and O(n logC(d,²) n) respectively. • Bothalgorithmscanbederandomizedbyenumerating all possiblerandomshifts of thequadtree (zoom tree), at thecost of an extra factor O(nd).

  36. Summary • VRAP is a combination of Euclidean TSP and a facilitylocationproblem. • Thestate-of-the-arttechniquesforEuclidean TSP and facilitylocationcanbecombinedinto a O(n log5 n)-PTAS forVRAP. • For Steiner VRAP, bynowwell-establishedstandardtechniquesyield a n logO(1/²) n-PTAS.

  37. Questions?

More Related