CF1845B.Come Together

传统题 时间 2000 ms 内存 256 MiB 4 尝试 1 已通过 1 标签

Come Together

Bob and Carol hanged out with Alice the whole day, but now it's time to go home. Alice, Bob and Carol live on an infinite 2D grid in cells AA, BB, and CC respectively. Right now, all of them are in cell AA.

If Bob (or Carol) is in some cell, he (she) can move to one of the neighboring cells. Two cells are called neighboring if they share a side. For example, the cell (3,5)(3, 5) has four neighboring cells: (2,5)(2, 5), (4,5)(4, 5), (3,6)(3, 6) and (3,4)(3, 4).

Bob wants to return to the cell BB, Carol — to the cell CC. Both of them want to go along the shortest path, i. e. along the path that consists of the minimum possible number of cells. But they would like to walk together as well.

What is the maximum possible number of cells that Bob and Carol can walk together if each of them walks home using one of the shortest paths?

Input

The first line contains the single integer tt (1t1041 \le t \le 10^4) — the number of test cases.

The first line of each test case contains two integers xAx_A and yAy_A (1xA,yA1081 \le x_A, y_A \le 10^8) — the position of cell AA, where both Bob and Carol are right now.

The second line contains two integers xBx_B and yBy_B (1xB,yB1081 \le x_B, y_B \le 10^8) — the position of cell BB (Bob's house).

The third line contains two integers xCx_C and yCy_C (1xC,yC1081 \le x_C, y_C \le 10^8) — the position of cell CC (Carol's house).

Additional constraint on the input: the cells AA, BB, and CC are pairwise distinct in each test case.

Output

For each test case, print the single integer — the maximum number of cells Bob and Carol can walk together if each of them goes home along one of the shortest paths.

Note

In all pictures, red color denotes cells belonging only to Bob's path, light blue color — cells belonging only to Carol's path, and dark blue color — cells belonging to both paths.

One of the optimal routes for the first test case is shown below:

Bob's route contains 55 cells, Carol's route — 77 cells, and they will visit 33 cells together.

The optimal answer for the second test case is shown below:

Bob's route contains 44 cells, Carol's route — 33 cells, and they will visit only 11 cell together.

One of the optimal answers for the third test case is shown below:

Bob's route contains 66 cells, Carol's route — 99 cells, and they will visit 66 cells together.

Samples

3
3 1
1 3
6 4
5 2
2 2
7 2
1 1
4 3
5 5
3
1
6

在线编程 IDE

建议全屏模式获得最佳体验