Editorial for WC '18 Contest 2 S1 - Laser Grid


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

For convenience, let's pretend that there are two extra vertical lasers with V values 0 and 1000000, and similarly two extra horizontal lasers with H values 0 and 1000000. Then, let x1 be the x-coordinate of the nearest vertical laser to the left of Ethan (in other words, the largest V value smaller than XE). Similarly, let x2 be the x-coordinate of the nearest vertical laser to the right of Ethan (the smallest V value larger than XE), and let y1 and y2 be the y-coordinates of the nearest horizontal lasers below and above Ethan, respectively. The values x1, x2, y1, and y2 may be computed by iterating over all of the lasers' H and V values, in O(N+M) time.

We can then observe that the i-th microchip is reachable if and only if x1<Xi<x2 and y1<Yi<y2. This check can be performed in O(1) time per microchip, resulting in a total time complexity of O(N+M+K).


Comments

There are no comments at the moment.