Last Mile Delivery: TSP Algorithms and Route Density

Last-mile delivery is the most expensive and complex segment of the supply chain. Optimizing it requires solving variants of the Traveling Salesperson Problem (TSP) under dynamic constraints like traffic, time windows, and vehicle capacity.

1. Algorithmic Foundations: TSP and VRP

The Traveling Salesperson Problem (TSP)

The goal is to visit a set of stops (n) and return to the depot via the shortest possible route.

The Vehicle Routing Problem (VRP)

Extends TSP to a fleet ofmvehicles.

2. Route Density Math

Route Density is the primary metric for last-mile profitability.

The Optimization Formula

\text{Cost Per Drop} = \frac{(\text{Driver Wage} \times \text{Route Time}) + (\text{Distance} \times \text{Fuel Cost})}{\text{Total Drops}}

3. Concrete Example: Urban vs. Suburban Routing

  1. Urban Route: 50 stops within 2 miles. Drop Density: 25 stops/sq mile. Result: Low fuel cost, high "Last 100 Meter" labor cost (lobby/elevator wait).
  2. Suburban Route: 50 stops across 40 miles. Drop Density: 1.25 stops/sq mile. Result: High fuel and vehicle wear, low "Last 100 Meter" cost (front porch drops).

Algorithmic Shift: In urban areas, algorithms prioritize Parking Optimization (minimizing walking distance from a central van spot), whereas in suburban areas, they prioritize Path Length (minimizing driving miles).

4. Summary of Routing Techniques

TechniqueUsageBenefit
Nearest NeighborInitial route buildSpeed
Tabu SearchLocal refinementEscapes local optima
Dynamic ReroutingTraffic incidentsAvoids delay cascades
Drone DeliveryHigh-value, light-weightBypasses road congestion

See Also