Problem hidden
This problem was hidden by Editorial Board member probably because it has incorrect language version or invalid test data, or description of the problem is not clear.

Problem hidden on 2013-07-11 15:54:49 by Mitch Schwartz

MATRIX1 - Enter the Matrix

no tags 

Neo has to enter again in the Matrix. The Matrix is represented as a two dimensional plane of coordinates x-y. When the Matrix was born, agent Smith showed up and imposed control. Unfortunately he is not alone, other agents are around him to do the same work. An agent is at some point in the Matrix given by a pair ( Xi, Yi ). Neo is now very furious because he cut his hair and wants to attack two agents. Neo can travel any distance to attack the first agent, but later he will be very tired, so he wants to walk the smallest distance possible to the next agent.

Neo is very busy conquering Trinity, who is a very difficult girl in terms of taking her out on a date, and he has no time to think about silly things like this, all he can think about is fun and war... Please, help him find the smallest distance possible from the first agent to the second.

Input

In the first line of the input appears one integer: T. This representes that your program must solve exactly T data sets for Neo. Each data set is not related to the previous one.

In the first line of each data set appears one integer: N, representing that there are N agents in that layout of agents. Following this line, N pairs of integers will appear, each pair in a new line, representing the position of each agent.

Output

For each data set your program must output only one line represents the smallest distance between two agents. Please for avoid decimal roundings write the result whit zero decimal places after the comma.

Example

Input:

2
4
1 1
-1 3
4 4
2 2
3
1 1
2 4
5 1

Output:

1
3

Constraints

1 <= T <= 20
2 <= N <= 100000
-1000000 <= Xi, Yi <= 1000000

Added by:Reinier César Mujica Hdez
Date:2009-05-13
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:My Favorite Movie Problem