#ARC109D. [ARC109D] く

[ARC109D] く

Score : 600600 points

Problem Statement

We have three stones at points (0,0)(0, 0), (1,0)(1,0), and (0,1)(0,1) on a two-dimensional plane.

These three stones are said to form an L when they satisfy the following conditions:

  • Each of the stones is at integer coordinates.
  • Each of the stones is adjacent to another stone. (That is, for each stone, there is another stone whose distance from that stone is 11.)
  • The three stones do not lie on the same line.

Particularly, the initial arrangement of the stone - (0,0)(0, 0), (1,0)(1,0), and (0,1)(0,1) - forms an L.

You can do the following operation any number of times: choose one of the stones and move it to any position. However, after each operation, the stones must form an L. You want to do as few operations as possible to put stones at points (ax,ay)(ax, ay), (bx,by)(bx, by), and (cx,cy)(cx, cy). How many operations do you need to do this?

It is guaranteed that the desired arrangement of stones - (ax,ay)(ax, ay), (bx,by)(bx, by), and (cx,cy)(cx, cy) - forms an L. Under this condition, it is always possible to achieve the objective with a finite number of operations.

You will be given TT cases of this problem. Solve each of them.

Notes

We assume that the three stones are indistinguishable. For example, the stone that is initially at point (0,0)(0,0) may be at any of the points (ax,ay)(ax, ay), (bx,by)(bx, by), and (cx,cy)(cx, cy) in the end.

Constraints

  • 1T1031 \leq T \leq 10^3
  • ax,ay,bx,by,cx,cy109|ax|,|ay|,|bx|,|by|,|cx|,|cy| \leq 10^9
  • The desired arrangement of stones - (ax,ay)(ax, ay), (bx,by)(bx, by), and (cx,cy)(cx, cy) - forms an L.

Input

Input is given from Standard Input in the following format:

TT

case1\text{case}_1

\vdots

caseT\text{case}_T

Each case is in the following format:

axax ayay bxbx byby cxcx cycy

Output

Print TT values. The ii-th value should be the minimum number of operations for casei\text{case}_i.

1
3 2 2 2 2 1
4

Let us use # to represent a stone. You can move the stones to the specified positions with four operations, as follows:

....    ....    ....    ..#.    ..##
#... -> ##.. -> .##. -> .##. -> ..#.
##..    .#..    .#..    ....    ....
10
0 0 1 0 0 1
1 0 0 1 1 1
2 -1 1 -1 1 0
1 -2 2 -1 1 -1
-1 2 0 2 -1 3
-1 -2 -2 -2 -2 -3
-2 4 -3 3 -2 3
3 1 4 2 4 1
-4 2 -4 3 -3 3
5 4 5 3 4 4
0
1
2
3
4
5
6
7
8
9