100 #ABC178E. [ABC178E] Dist Max

[ABC178E] Dist Max

Score : 500500 points

Problem Statement

There are NN points on the 2D plane, ii-th of which is located on (xi,yi)(x_i, y_i). There can be multiple points that share the same coordinate. What is the maximum possible Manhattan distance between two distinct points?

Here, the Manhattan distance between two points (xi,yi)(x_i, y_i) and (xj,yj)(x_j, y_j) is defined by xixj+yiyj|x_i-x_j| + |y_i-y_j|.

Constraints

  • 2N2×1052 \leq N \leq 2 \times 10^5
  • 1xi,yi1091 \leq x_i,y_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

x1x_1 y1y_1

x2x_2 y2y_2

::

xNx_N yNy_N

Output

Print the answer.

3
1 1
2 4
3 2
4

The Manhattan distance between the first point and the second point is 12+14=4|1-2|+|1-4|=4, which is maximum possible.

2
1 1
1 1
0