测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A15363. Traveling Salesman Problem

编程题 普及/提高-

题目描述

You are living on an infinite plane with the Cartesian coordinate system on it. In one move you can go to any of the four adjacent points (left, right, up, down).

More formally, if you are standing at the point $(x, y)$ , you can:

- go left, and move to $(x - 1, y)$ , or
- go right, and move to $(x + 1, y)$ , or
- go up, and move to $(x, y + 1)$ , or
- go down, and move to $(x, y - 1)$ .

There are $n$ boxes on this plane. The $i$ -th box has coordinates $(x_i,y_i)$ . It is guaranteed that the boxes are either on the $x$ -axis or the $y$ -axis. That is, either $x_i=0$ or $y_i=0$ .

You can collect a box if you and the box are at the same point. Find the minimum number of moves you have to perform to collect all of these boxes if you have to start and finish at the point $(0,0)$ .

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 100$ ) — the number of test cases.

The first line of each test case contains a single integer $n$ ( $1 \le n \le 100$ ) — the number of boxes.

The $i$ -th line of the following $n$ lines contains two integers $x_i$ and $y_i$ ( $-100 \le x_i, y_i \le 100$ ) — the coordinate of the $i$ -th box. It is guaranteed that either $x_i=0$ or $y_i=0$ .

Do note that the sum of $n$ over all test cases is not bounded.

输出格式

For each test case output a single integer — the minimum number of moves required.

输入输出样例

输入 #1
3
4
0 -2
1 0
-1 0
0 2
3
0 2
-3 0
0 -1
1
0 0
输出 #1
12
12
0

说明/提示

In the first test case, a possible sequence of moves that uses the minimum number of moves required is shown below.

![](/uploads/acgo/image/2bd594aea31afb62_7bed02028930.jpeg) $$$$(0,0) \to (1,0) \to (1,1) \to (1, 2) \to (0,2) \to (-1,2) \to (-1,1) \to (-1,0) \to (-1,-1) \to (-1,-2) \to (0,-2) \to (0,-1) \to (0,0) $$ </span> </center><p>In the second test case, a possible sequence of moves that uses the minimum number of moves required is shown below.</p><center> <img class="tex-graphics" src="https://espresso.codeforces.com/be215267232d4ce410faf437f6516dfc445f4232.png" style="max-width: 100.0%;max-height: 100.0%;" /> <span class="tex-font-size-small"> $$ (0,0) \to (0,1) \to (0,2) \to (-1, 2) \to (-2,2) \to (-3,2) \to (-3,1) \to (-3,0) \to (-3,-1) \to (-2,-1) \to (-1,-1) \to (0,-1) \to (0,0) $$$$In the third test case, we can collect all boxes without making any moves.
上一题 去做题 下一题