CF1922C.Closest Cities

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn cities located on the number line, the ii -th city is in the point aia_i . The coordinates of the cities are given in ascending order, so a1<a2<<ana_1 < a_2 < \dots < a_n .

The distance between two cities xx and yy is equal to axay|a_x - a_y| .

For each city ii , let's define the closest city jj as the city such that the distance between ii and jj is not greater than the distance between ii and each other city kk . For example, if the cities are located in points [0,8,12,15,20][0, 8, 12, 15, 20] , then:

  • the closest city to the city 11 is the city 22 ;
  • the closest city to the city 22 is the city 33 ;
  • the closest city to the city 33 is the city 44 ;
  • the closest city to the city 44 is the city 33 ;
  • the closest city to the city 55 is the city 44 .

The cities are located in such a way that for every city, the closest city is unique. For example, it is impossible for the cities to be situated in points [1,2,3][1, 2, 3] , since this would mean that the city 22 has two closest cities ( 11 and 33 , both having distance 11 ).

You can travel between cities. Suppose you are currently in the city xx . Then you can perform one of the following actions:

  • travel to any other city yy , paying axay|a_x - a_y| coins;
  • travel to the city which is the closest to xx , paying 11 coin.

You are given mm queries. In each query, you will be given two cities, and you have to calculate the minimum number of coins you have to spend to travel from one city to the other city.

输入格式

The first line contains one integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

Each test case is given in the following format:

  • the first line contains one integer nn ( 2n1052 \le n \le 10^5 );
  • the second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 0a1<a2<<an1090 \le a_1 < a_2 < \dots < a_n \le 10^9 );
  • the third line contains one integer mm ( 1m1051 \le m \le 10^5 );
  • then mm lines follow; the ii -th of them contains two integers xix_i and yiy_i ( 1xi,yin1 \le x_i, y_i \le n ; xiyix_i \ne y_i ), denoting that in the ii -th query, you have to calculate the minimum number of coins you have to spend to travel from the city xix_i to the city yiy_i .

Additional constraints on the input:

  • in every test case, for each city, the closest city is determined uniquely;
  • the sum of nn over all test cases does not exceed 10510^5 ;
  • the sum of mm over all test cases does not exceed 10510^5 .

输出格式

For each query, print one integer — the minimum number of coins you have to spend.

输入输出样例

  • 输入#1

    1
    5
    0 8 12 15 20
    5
    1 4
    1 5
    3 4
    3 2
    5 1

    输出#1

    3
    8
    1
    4
    14

说明/提示

Let's consider the first two queries in the example from the statement:

  • in the first query, you are initially in the city 11 . You can travel to the closest city (which is the city 22 ), paying 11 coin. Then you travel to the closest city (which is the city 33 ) again, paying 11 coin. Then you travel to the closest city (which is the city 44 ) again, paying 11 coin. In total, you spend 33 coins to get from the city 11 to the city 44 ;
  • in the second query, you can use the same way to get from the city 11 to the city 44 , and then spend 55 coins to travel from the city 44 to the city 55 .
首页