Editing 399: Travelling Salesman Problem

Jump to: navigation, search

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 8: Line 8:
  
 
==Explanation==
 
==Explanation==
The {{w|Travelling salesman problem|travelling salesman problem}} is a classic problem in computer science. An intuitive way of stating this problem is that given a list of cities and the distances between pairs of them, the task is to find the shortest possible route that visits each city exactly once and then returns to the origin city. A naïve solution solves the problem in {{w|Factorial|O(n!) time}} (where n is the size of the list), simply by checking all possible routes, and selecting the shortest one. However, this approach will take a long time as the number of possible routes increases superexponentially as more nodes are included.
+
The {{w|Travelling salesman problem}} is a classic problem in computer science. An intuitive way of stating this problem is that given a list of cities and their pairwise distances, the task is to find the shortest possible route that visits each city exactly once and then returns to the origin city. A naive solution solves the problem in {{w|Factorial|O(n!) time}} (where n is the size of the list), simply by checking all possible routes, and selecting the shortest one. A more efficient {{w|Dynamic programming|dynamic programming}} approach yields a solution in O(n<sup>2</sup>2<sup>n</sup>) time. These times are given using {{w|Big O notation}}, which is commonly used in computer science to show the efficiency or complexity of a solution or algorithm.
  
A more efficient {{w|Dynamic programming|dynamic programming}} approach, the {{w|Held-Karp algorithm}}, yields a solution in O(n<sup>2</sup>2<sup>n</sup>) time. These times are given using {{w|Big O notation}}, which is commonly used in computer science to show the efficiency or complexity of a solution or algorithm.
+
The joke is that the salesman selling online (say on {{w|eBay}}, {{w|Amazon Marketplace}}, or other virtual marketplace) does not have to worry about this problem since he does not need to travel, to which the travelling salesman angrily responds "shut the hell up".
  
The joke is that the salesman selling online (say on {{w|eBay}}, {{w|Amazon Marketplace}}, or other virtual marketplace) does not have to worry about this problem, since he does not need to travel (which makes the time to find the best solution O(1)), to which the travelling salesman angrily responds, "Shut the hell up."
+
The title text wonders about the time complexity of the {{w|Cutting-plane method}}, which is sometimes used to solve optimization problems.
 +
The last sentence suggests the down side for Randall of writing comics about computer science; he sometimes encounters problems to which he cannot find the answer, whereas authors of simpler comics such as {{w|Garfield}} do not have this problem. This is also likely a reference to [[78: Garfield]], which parodies Garfield's simplicity.
  
The title text wonders about the time complexity of the {{w|Cutting-plane method|cutting-plane method}}, which is sometimes used to solve optimization problems.
+
This is so far the only comic featuring the [[Brown Hat]] character.
  
The last sentence suggests the downside for Randall of drawing comics about computer science; he sometimes encounters problems to which he cannot find the answer, whereas authors of simpler comics such as {{w|Garfield}} do not have this problem. This is also likely a reference to [[78: Garfield]], which parodies Garfield's simplicity.
+
Also see previous strip [[287: NP-Complete]].
 
 
The map almost certainly depicts the United States, with the locations highlighted suspected to be (from left to right): Seattle, San Francisco, Los Angeles, Phoenix, Denver, Minneapolis, Dallas, San Antonio, Houston, Chicago (cut off), Detroit, Atlanta, Miami, Washington D.C., Philadelphia, New York, and Boston.
 
 
 
This is so far the only comic featuring the Brown Hat character.
 
 
 
Also see earlier strip [[287: NP-Complete]].
 
  
 
==Transcript==
 
==Transcript==
:[There is a linked black web, with a path in red; it appears to be a map of the United States.]
+
:[There is a linked black web, with a path in red; it may be a map of the USA.]
:Brute-force solution: O(n!)
+
:Brute-force solution:O(n!)
:[The web continues in this one. A man with a brown hat and a case is drawing it.]
+
:[The web continues in this one. A man with a hat and a case is drawing it.]
 
:Dynamic programming algorithms: O(n<sup>2</sup>2<sup>n</sup>)
 
:Dynamic programming algorithms: O(n<sup>2</sup>2<sup>n</sup>)
:[Another man, with a brown hat too, is at a computer, looking back over the chair.]
+
:[Another man, with a hat too, is at a computer, looking back over the chair.]
 
:Selling on eBay: O(1)
 
:Selling on eBay: O(1)
 
:eBay salesman: Still working on your route?
 
:eBay salesman: Still working on your route?
Line 36: Line 31:
 
{{comic discussion}}
 
{{comic discussion}}
 
[[Category:Comics with color]]
 
[[Category:Comics with color]]
 +
[[Category:Comics featuring Brown Hat]]
 
[[Category:Math]]
 
[[Category:Math]]
[[Category:Programming]]
 

Please note that all contributions to explain xkcd may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see explain xkcd:Copyrights for details). Do not submit copyrighted work without permission!

To protect the wiki against automated edit spam, we kindly ask you to solve the following CAPTCHA:

Cancel | Editing help (opens in new window)