CF1845B.Come Together
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 A , B , and C respectively. Right now, all of them are in cell A .
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) has four neighboring cells: (2,5) , (4,5) , (3,6) and (3,4) .
Bob wants to return to the cell B , Carol — to the cell C . 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?
输入格式
The first line contains the single integer t ( 1≤t≤104 ) — the number of test cases.
The first line of each test case contains two integers xA and yA ( 1≤xA,yA≤108 ) — the position of cell A , where both Bob and Carol are right now.
The second line contains two integers xB and yB ( 1≤xB,yB≤108 ) — the position of cell B (Bob's house).
The third line contains two integers xC and yC ( 1≤xC,yC≤108 ) — the position of cell C (Carol's house).
Additional constraint on the input: the cells A , B , and C are pairwise distinct in each test case.
输出格式
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.
输入输出样例
输入#1
3 3 1 1 3 6 4 5 2 2 2 7 2 1 1 4 3 5 5
输出#1
3 1 6
说明/提示
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 5 cells, Carol's route — 7 cells, and they will visit 3 cells together.The optimal answer for the second test case is shown below:
Bob's route contains 4 cells, Carol's route — 3 cells, and they will visit only 1 cell together.One of the optimal answers for the third test case is shown below:
Bob's route contains 6 cells, Carol's route — 9 cells, and they will visit 6 cells together.