传统题 1000ms 256MiB

E - Dist Max

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

E - Dist Max

Score : $500$ points

Problem Statement

There are $N$ points on the 2D plane, $i$-th of which is located on $(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 $(x_i, y_i)$ and $(x_j, y_j)$ is defined by $|x_i-x_j| + |y_i-y_j|$.

Constraints

  • $2 \leq N \leq 2 \times 10^5$
  • $1 \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 $|1-2|+|1-4|=4$, which is maximum possible.


2
1 1
1 1
0

2024寒假入门组刷题营(十二)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-12 13:30
结束于
2024-2-12 15:30
持续时间
2 小时
主持人
参赛人数
10