Preparando MOJI

Mice and Holes

1000ms 262144K

Description:

One day Masha came home and noticed n mice in the corridor of her flat. Of course, she shouted loudly, so scared mice started to run to the holes in the corridor.

The corridor can be represeted as a numeric axis with n mice and m holes on it. ith mouse is at the coordinate xi, and jth hole — at coordinate pj. jth hole has enough room for cj mice, so not more than cj mice can enter this hole.

What is the minimum sum of distances that mice have to go through so that they all can hide in the holes? If ith mouse goes to the hole j, then its distance is |xi - pj|.

Print the minimum sum of distances.

Input:

The first line contains two integer numbers n, m (1 ≤ n, m ≤ 5000) — the number of mice and the number of holes, respectively.

The second line contains n integers x1, x2, ..., xn ( - 109 ≤ xi ≤ 109), where xi is the coordinate of ith mouse.

Next m lines contain pairs of integer numbers pj, cj ( - 109 ≤ pj ≤ 109, 1 ≤ cj ≤ 5000), where pj is the coordinate of jth hole, and cj is the maximum number of mice that can hide in the hole j.

Output:

Print one integer number — the minimum sum of distances. If there is no solution, print -1 instead.

Sample Input:

4 5
6 2 8 9
3 6
2 1
3 6
4 7
4 7

Sample Output:

11

Sample Input:

7 2
10 20 30 40 50 45 35
-1000000000 10
1000000000 1

Sample Output:

7000000130

Informação

Codeforces

Provedor Codeforces

Código CF797F

Tags

data structuresdpgreedysortings

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:14:39

Relacionados

Nada ainda