CF1566F.Points Movement

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn points and mm segments on the coordinate line. The initial coordinate of the ii -th point is aia_i . The endpoints of the jj -th segment are ljl_j and rjr_j — left and right endpoints, respectively.

You can move the points. In one move you can move any point from its current coordinate xx to the coordinate x1x - 1 or the coordinate x+1x + 1 . The cost of this move is 11 .

You should move the points in such a way that each segment is visited by at least one point. A point visits the segment [l,r][l, r] if there is a moment when its coordinate was on the segment [l,r][l, r] (including endpoints).

You should find the minimal possible total cost of all moves such that all segments are visited.

输入格式

The input consists of multiple test cases. The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Description of the test cases follows.

The first line of each test case contains two integers nn and mm ( 1n,m21051 \le n, m \le 2 \cdot 10^5 ) — the number of points and segments respectively.

The next line contains nn distinct integers a1,a2,,ana_1, a_2, \ldots, a_n ( 109ai109-10^9 \le a_i \le 10^9 ) — the initial coordinates of the points.

Each of the next mm lines contains two integers ljl_j , rjr_j ( 109ljrj109-10^9 \le l_j \le r_j \le 10^9 ) — the left and the right endpoints of the jj -th segment.

It's guaranteed that the sum of nn and the sum of mm over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case print a single integer — the minimal total cost of all moves such that all segments are visited.

输入输出样例

  • 输入#1

    2
    4 11
    2 6 14 18
    0 3
    4 5
    11 15
    3 5
    10 13
    16 16
    1 4
    8 12
    17 19
    7 13
    14 19
    4 12
    -9 -16 12 3
    -20 -18
    -14 -13
    -10 -7
    -3 -1
    0 4
    6 11
    7 9
    8 10
    13 15
    14 18
    16 17
    18 19

    输出#1

    5
    22

说明/提示

In the first test case the points can be moved as follows:

  • Move the second point from the coordinate 66 to the coordinate 55 .
  • Move the third point from the coordinate 1414 to the coordinate 1313 .
  • Move the fourth point from the coordinate 1818 to the coordinate 1717 .
  • Move the third point from the coordinate 1313 to the coordinate 1212 .
  • Move the fourth point from the coordinate 1717 to the coordinate 1616 .

The total cost of moves is 55 . It is easy to see, that all segments are visited by these movements. For example, the tenth segment ( [7,13][7, 13] ) is visited after the second move by the third point.

Here is the image that describes the first test case:

首页