|
|||
I — Security GuardsIn the course of the last few weeks, Binary Casino has been afflicted by a local crime wave, which is primarily focused on casinos in the neighborhood. Although there are surveillance cameras installed in Binary Casino, thieves usually manage to sneak out with relative ease, as there is almost nobody patrolling in the casino. After the theft of all Friday's earnings, the manager of Binary Casino has lost his patience and decided to reinforce security of the casino by hiring a vast number of security guards. However, nobody in the casino was capable of coming up with a plan on how to distribute guards across the whole casino to maximize security. Security guards are thus scaterred across the casino in no systematic way. Fortunately, their locations can be described by integer coordinates in a 2D plane. Because of the uneven distribution of security guards, in case of a reported robbery, it is very hard for security supervisors to determine which guard is closest to the location of the incident. The task is even harder due to the constrained space in the casino, which consists of endless aisles of slot machines. This limitation forces each guard to travel from one location to another in a sequence of steps. In each step, he/she can change each of his/her coordinates by 1, 0, or –1. The distance between two locations is equal to the minimum number of steps the guard has to take to get from one location to the other one. The task is, for given locations of guards and a set of locations of security incidents, to compute for each incident location its shortest distance to any of the guards. This will allow security supervisors to alert appropriate guards and will greatly increase security of the casino. Input SpecificationThe first line of the input contains two integers N and Q (1 ≤ N, Q ≤ 3 · 105), the number of guards and the number of security incidents, respectively. After that, N lines follow. Each of these lines contains two integers X and Y (0 ≤ X, Y ≤ 5000), which describe the coordinates of a guard in a 2D plane. Next, Q lines follow. Each of these lines contains two integers A and B (0 ≤ A, B ≤ 5000), which describe the coordinates of a security incident. Output SpecificationFor each of the Q security incidents, output a line containing the shortest distance to any of the security guards, measured in steps. Sample Input 1
Output for Sample Input 1
Sample Input 2
Output for Sample Input 2
Original Problem |
|||
University of Debrecen; Faculty of Informatics; v. 09/30/2024 |