跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2375. Evil

    ID: 2381 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>数学挑战难度共享题库Codeforces英文题面题目来源题面语言

Evil

题目描述

E. Evil
time limit per test
3 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There are n cities on a two dimensional Cartesian plane. The distance between two cities is equal to the Manhattan distance between them (see the Notes for definition). A Hamiltonian cycle of the cities is defined as a permutation of all n cities. The length of this Hamiltonian cycle is defined as the sum of the distances between adjacent cities in the permutation plus the distance between the first and final city in the permutation. Please compute the longest possible length of a Hamiltonian cycle of the given cities.

Input

The first line contains an integer n (3≤n≤105). Then n lines follow, each consisting of two integers xi and yi (0≤xi,yi≤109), denoting the coordinates of a city. All given points will be distinct.

Output

A single line denoting the longest possible length of a Hamiltonian cycle of the given cities. You should not output the cycle, only its length.

Please, do not write the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Examples
Input
4
1 1
1 2
2 1
2 2
Output
6
Note

In the example, one of the possible Hamiltonian cycles with length 6 is (1, 1) (1, 2) (2, 1) (2, 2). There does not exist any other Hamiltonian cycle with a length greater than 6.

The Manhattan distance between two cities (xi,yi) and (xj,yj) is |xi-xj|+|yi-yj|.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2002 题。保留原作者与原赛事署名。