Chinese Postman Problem
Chinese Postman Problem
Presented By
V.Siva Varun
Contents
1.Real World Problem
2. Special Properties
3.Interpreting graph solution to Real world problem
4.Solution to the Problem
5.Real World Applications
6.References
Real World Problem
There is a Postman who delivers mail to
a certain neighborhood of street. The postman
is unwilling to walk far so he wants to find the
shortest route possible. The postman should
start and end at same spot and walk down
each street at least once.
Behind the Problem
• It was first proposed by a Chinese
mathematician Mei-Ku Kaun.
Vertex Order
A 3
B 3
C 3
D 3
It is possible to draw the above graph without taking the pen of the paper and
without retracing the same edge but we can achieve this by starting at either A or D
and in each case the path will end at the other vertex of D or A.
Here we can draw the above graph without retracing the edge or taking the pen of
the paper regardless the starting position and we will always return to the start
vertex. This is because all the vertices have even degree.
Vertex Order
A 3
B 3
C 4
D 3
E 3
Problem Solution
Algorithm:
Step 3: For each pairing find the edges that connect the vertices with the minimum weight.
Step 4: Find the pairings such that the sum of the weights is minimized.
Step 5: On the original graph add the edges that have been found in Step 4.
Step 6: The length of an optimal Chinese postman route is the sum of all the edges added to the
total found in Step 4.
Step 7: A route corresponding to this minimum weight can then be easily found.
Solution(Contd)
Step1: List All Vertices that have odd degree.
Vertex Order
A 3
B 3
D 3
E 3
Solution (Contd)
Step2: List all possible Pairing of odd vertices.
1 AB and DE
2 AD and BE
1 2 3
Solution(Contd)
Step4: Find the pairings such that the sum of the weights is minimized.
a -> b -> e -> d -> a -> c -> e -> b -> c -> d -> a
8+6+8+6+5+5+6+5+5+6=60
Real World Applications
1.Site Seeing
2.Deliveries
3.Shopping
Thank You!!!!
References
1. http://web.mit.edu/urban_or_book/www/book/chapter6/6.4.4.html
2. http://www.suffolkmaths.co.uk/pages/Maths%20Projects/Projects/Topology%
20and%20Graph%20Theory/Chinese%20Postman%20Problem.pdf
3. http://www.utdallas.edu/~dxd056000/cs6363/Chinese.htm