CF1869B.2D Traveling
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Piggy lives on an infinite plane with the Cartesian coordinate system on it.
There are n cities on the plane, numbered from 1 to n , and the first k cities are defined as major cities. The coordinates of the i -th city are (xi,yi) .
Piggy, as a well-experienced traveller, wants to have a relaxing trip after Zhongkao examination. Currently, he is in city a , and he wants to travel to city b by air. You can fly between any two cities, and you can visit several cities in any order while travelling, but the final destination must be city b .
Because of active trade between major cities, it's possible to travel by plane between them for free. Formally, the price of an air ticket f(i,j) between two cities i and j is defined as follows:
$$ f(i,j)= \begin{cases} 0, & \text{if cities }i \text{ and }j \text{ are both major cities} \\ |x_i-x_j|+|y_i-y_j|, & \text{otherwise} \end{cases} $$Piggy doesn't want to save time, but he wants to save money. So you need to tell him the minimum value of the total cost of all air tickets if he can take any number of flights.
输入格式
The first line of input contains a single integer t ( 1≤t≤104 ) — the number of test cases. The description of test cases follows.
The first line of each test case contains four integers n , k , a and b ( 2≤n≤2⋅105 , 0≤k≤n , 1≤a,b≤n , a=b ) — the number of cities, the number of major cities and the numbers of the starting and the ending cities.
Then n lines follow, the i -th line contains two integers xi and yi ( −109≤xi,yi≤109 ) — the coordinates of the i -th city. The first k lines describe major cities. It is guaranteed that all coordinates are pairwise distinct.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 .
输出格式
For each test case, print a single integer — the minimum value of the total price of all air tickets.
输入输出样例
输入#1
5 6 2 3 5 0 0 1 -2 -2 1 -1 3 2 -2 -3 -3 2 0 1 2 -1000000000 -1000000000 1000000000 1000000000 7 5 4 2 154 147 -154 -147 123 456 20 23 43 20 998 244 353 100 3 1 3 1 0 10 1 20 2 30 4 3 2 4 0 0 -100 100 -1 -1 -1 0
输出#1
4 4000000000 0 22 1
说明/提示
In the first test case:
The major cities are marked red.The optimal way to choose the flights is: 3→1→2→5 , which will cost 3+0+1=4 . Note that the flight 1→2 costs 0 , because both city 1 and 2 are major cities.
In the second test case, since there are only 2 cities, the only way is to take a flight from city 1 to 2 .
In the third test case, since city 2 and 4 are both major cities, Piggy can directly take a flight from city 2 to 4 , which costs 0 .
In the fourth test case, Piggy can choose to take the following flights: 3→2→1 , and the cost is 11+11=22 .