1 / 3

Traveling Salesperson Problem

Traveling Salesperson Problem. Classic Problem in Math (optimization) and CS A “legal” tour of N cities visits each city once and returns to starting city Example tour: NY -> Dallas -> Boston -> LA -> Miami -> NY Problem definition “Find the minimal cost tour”. Data for our Example.

clovis
Download Presentation

Traveling Salesperson Problem

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. Traveling Salesperson Problem • Classic Problem in Math (optimization) and CS • A “legal” tour of N cities visits each city once and returns to starting city • Example tour: NY -> Dallas -> Boston -> LA -> Miami -> NY • Problem definition “Find the minimal cost tour”

  2. Data for our Example • NY to LA 3400 miles • NY to Boston 130 miles • NY to Dallas 2700 miles • NY to Miami 1400 miles • LA to Boston 3450 miles • LA to Dallas 1750 miles • LA to Miami 3100 miles • Dallas to Miami 1900 miles • Dallas to Boston 2740 miles • Miami to Boston 1450 miles

  3. “Interesting” Issues • The only known way to guarantee a minimal cost tour is to generate each possible tour, and “remember” the lowest cost as you go. • So, finding minimal tour is impractical for problems with more than 100 (or so) cities. A 20-city problem would take longer than we’re willing to wait in this class. • Therefore we uses heuristics to get a “good tour.”

More Related