当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6800:Play osu! on Your Tablet

题目描述
Little Q is an enthusiast of rhythm games, and recently he began to play osu! (standard mode) on his tablet.

In the game, his goal is to hit objects (circles, sliders, spinners, etc.) at the right time, and the more hits are perfectly timed, the more total score he gets. Additionally, since his tablet and this game support multi-finger control, he is able to play with two or more fingers. Here are a few snapshots of the game interface.



During his performance-enhancing play, he suddenly comes up with the following question:

There are several oncoming circles on the interface, whose perfect time to hit are pairwisely distinct, and Little Q wants to hit them at the right time using only two fingers. Besides, he wants to minimize the total cost of moving his fingers, where the cost of moving one finger between two circles is equal to the Manhattan distance between the centers of these two circles, and the total cost is the sum of costs for each finger.

Stunned by your excellent problem-solving capability, he would like to ask you to find the minimum total cost.

By the way, the Manhattan distance between two points $(x_0, y_0)$ and $(x_1, y_1)$ is defined as $|x_0 - x_1| + |y_0 - y_1|$, where $|p|$ is the absolute value of $p$.

For more details about osu!, you may refer to http://osu.ppy.sh/help/wiki/Main_Page.
输入解释
There are several test cases.

The first line contains an integer $T$ $(1 \leq T \leq 1000)$, denoting the number of test cases. Then follow all the test cases.

For each test case, the first line contains an integer $n$ $(1 \leq n \leq 10^5)$, denoting the number of oncoming circles.

The next $n$ lines describe these circles in chronological order of occurrence, where the $i$-th line contains two integers $x_i$ and $y_i$ $(0 \leq x_i, y_i \leq 10^9)$, representing a circle with center $(x_i, y_i)$.

It is guaranteed that the sum of $n$ in all test cases is no larger than $3 \times 10^5$.
输出解释
For each test case, output in one line the minimum total cost.
输入样例
2
3
0 1
1 0
1 1
3
0 1
4 0
2 1
输出样例
1
2
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6800

最后修改于 2020-10-25T23:34:29+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
5000/5000MS(Java/Others) 524288/524288K(Java/Others)