题库练习 Traveling Salesman Problem
← 上一题 下一题 →

A15363 | Traveling Salesman Problem

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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
C++ 编辑器
输入
输出