1507: CF845 - E. Fire in the City
[Creator : ]
Description
The capital of Berland looks like a rectangle of size $n×m$ of the square blocks of same size.
Fire!
It is known that $k+1$ blocks got caught on fire $(k+1≤n·m)$. Those blocks are centers of ignition. Moreover positions of $k$ of these centers are known and one of these stays unknown. All $k+1$ positions are distinct.
The fire goes the following way: during the zero minute of fire only these $k+1$ centers of ignition are burning. Every next minute the fire goes to all neighbouring blocks to the one which is burning. You can consider blocks to burn for so long that this time exceeds the time taken in the problem. The neighbouring blocks are those that touch the current block by a side or by a corner.
Berland Fire Deparment wants to estimate the minimal time it takes the fire to lighten up the whole city. Remember that the positions of $k$ blocks (centers of ignition) are known and $(k+1)$-th can be positioned in any other block.
Help Berland Fire Department to estimate the minimal time it takes the fire to lighten up the whole city.
It is known that $k+1$ blocks got caught on fire $(k+1≤n·m)$. Those blocks are centers of ignition. Moreover positions of $k$ of these centers are known and one of these stays unknown. All $k+1$ positions are distinct.
The fire goes the following way: during the zero minute of fire only these $k+1$ centers of ignition are burning. Every next minute the fire goes to all neighbouring blocks to the one which is burning. You can consider blocks to burn for so long that this time exceeds the time taken in the problem. The neighbouring blocks are those that touch the current block by a side or by a corner.
Berland Fire Deparment wants to estimate the minimal time it takes the fire to lighten up the whole city. Remember that the positions of $k$ blocks (centers of ignition) are known and $(k+1)$-th can be positioned in any other block.
Help Berland Fire Department to estimate the minimal time it takes the fire to lighten up the whole city.
Input
The first line contains three integers $n,m,k\ (1≤n,m≤10^9,\ 1≤k≤500)$.
Each of the next $k$ lines contain two integers $x_i,y_i\ (1≤x_i≤n,\ 1≤y_i≤m)$ − coordinates of the $i$-th center of ignition. It is guaranteed that the locations of all centers of ignition are distinct.
Output
Print the minimal time it takes the fire to lighten up the whole city (in minutes).
Sample 1 Input
7 7 3
1 2
2 1
5 5
Sample 1 Output
3
the last block can have coordinates (4,4).
Sample 2 Input
10 5 1
3 3
Sample 2 Output
2
the last block can have coordinates (8,3).