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

#F0640. Guard Towers

    ID: 646 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>二分并查集计算几何图论排序算法思想数据结构数学编程与模拟挑战难度共享题库Codeforces英文题面题目来源题面语言

Guard Towers

题目描述

E. Guard Towers
time limit per test
1.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In a far away kingdom lives a very greedy king. To defend his land, he built n guard towers. Apart from the towers the kingdom has two armies, each headed by a tyrannical and narcissistic general. The generals can't stand each other, specifically, they will never let soldiers of two armies be present in one tower.

During defence operations to manage a guard tower a general has to send part of his army to that tower. Each general asks some fee from the king for managing towers. As they live in a really far away kingdom, each general evaluates his fee in the following weird manner: he finds two remotest (the most distant) towers, where the soldiers of his army are situated and asks for the fee equal to the distance. Each tower is represented by a point on the plane with coordinates (x,y), and the distance between two points with coordinates (x1,y1) and (x2,y2) is determined in this kingdom as |x1-x2|+|y1-y2|.

The greedy king was not exactly satisfied with such a requirement from the generals, that's why he only agreed to pay one fee for two generals, equal to the maximum of two demanded fees. However, the king is still green with greed, and among all the ways to arrange towers between armies, he wants to find the cheapest one. Each tower should be occupied by soldiers of exactly one army.

He hired you for that. You should find the minimum amount of money that will be enough to pay the fees. And as the king is also very scrupulous, you should also count the number of arrangements that will cost the same amount of money. As their number can be quite large, it is enough for the king to know it as a remainder from dividing by 109+7.

Two arrangements are distinct if the sets of towers occupied by soldiers of the first general are distinct.

Input

The first line contains an integer n (2≤n≤5000), n is the number of guard towers. Then follow n lines, each of which contains two integers x,y − the coordinates of the i-th tower (0≤x,y≤5000). No two towers are present at one point.

Pretest 6 is one of the maximal tests for this problem.

Output

Print on the first line the smallest possible amount of money that will be enough to pay fees to the generals.

Print on the second line the number of arrangements that can be carried out using the smallest possible fee. This number should be calculated modulo 1000000007 (109+7).

Examples
Input
2
0 0
1 1

Output
0
2
Input
4
0 0
0 1
1 0
1 1
Output
1
4
Input
3
0 0
1000 1000
5000 5000
Output
2000
2
Note

In the first example there are only two towers, the distance between which is equal to 2. If we give both towers to one general, then we well have to pay 2 units of money. If each general receives a tower to manage, to fee will be equal to 0. That is the smallest possible fee. As you can easily see, we can obtain it in two ways.


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