A crime committed in a city and the suspect starts to run away. A map of the city is given. At the moment, there are some police cars at some given places and they try to stop the suspect. The car of police and the suspect have a same maximum speed. The suspect can only pass a point if he reaches it earlier than any police car. There are several exits in the map, and the suspect evades if he reaches any of them. Find an algorithm allocating the police cars so that no path can the suspect take to evade.
For example, below is a possible city map.

White circle is where the suspect starts, black circles are police cars, and little squares are exits. In this situation, suspect can be stopped. A possible plan is police car A goes to A', B stays and C goes to C'.
An equivalent description of my problem could be:
A chemical factory (marked by the white circle) explodes and poisonous fluid starts to flow at each possible direction at speed
v, and the rescue teams (marked by black circles) whose maximum speed is alsovare trying to block it. The little squares are villagers they are protecting.
My Thoughts
If we have n police cars, a highly inefficient approach is to list all possible k-element subsets P of vertices such that:
a) k <= n;
b) Remove all vertices in
Pin the map will cause any exit unreachable to the suspect;c) Remove any proper subset of
Pwill let at least one exit reachable to the suspect.
Then we can easily determine if every vertex in P can be covered by a police no later than the suspect.
But how do I list all the possible Ps?
@Lior Kogan:
Look at this map:

If it is a turning game in which both sides knowing other's strategy, the police will win because he can just guard the side where the suspect go.
But in my problem, the police loses because he'll never know which side the suspect may choose.

cut(any of the subset of the vertices that cuts two group of vertices unreachable.) – trVoldemort Oct 13 '11 at 6:06cutis mentioned in discussing the Maximum flow problem. – trVoldemort Oct 13 '11 at 6:09