In the event of technical difficulties with Szkopuł, please contact us via email at [email protected].
If you would like to talk about tasks, solutions or technical problems, please visit our Discord servers. They are moderated by the community, but members of the support team are also active there.
Byteman, one of the most deserving employee of The Goldmine of Byteland, is about to retire by the end of the year. The Goldmine management would like to reward him in acknowledgment of his conscientious work. As a reward Byteman may receive a small lot - a rectangular piece of the mine's area with sides of length and parallel to the axes of the coordinate system. He may choose the location of the lot. Of course, a value of the lot depends on the location. The value of the lot is a number of gold nuggets in the area of the lot (if a nugget lies on the border of the lot, then it is in the area of the lot). Your task is to write a program which computes the maximal possible value of the lot (the value of the lot with the best location). In order to simplify we assume that the terrain of the Goldmine is boundless, but the area of gold nuggets occurrence is limited.
Write a program which:
In the first line of the standard input there are two positive integers and separated by a single space, (); they denote the lengths of lot's sides - parallel to the OX-axe and OY-axe respectively. There is one positive integer written in the second line, (). It denotes the number of nuggets in the area of the Goldmine. In the following lines there are written the coordinates of the nuggets. Each of these lines consists of two integers and , (), separated by a single space and denoting the and the coordinate of a nugget respectively.
The standard output should contain exactly one integer equal to the value of the most valuable lot of a given size.
For the input data:
1 2 12 0 0 1 1 2 2 3 3 4 5 5 5 4 2 1 4 0 5 5 0 2 3 3 2
the correct result is:
4
Task author: Tomasz Walen.