CF988F.Rain and Umbrellas
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarp lives on a coordinate line at the point x=0 . He goes to his friend that lives at the point x=a . Polycarp can move only from left to right, he can pass one unit of length each second.
Now it's raining, so some segments of his way are in the rain. Formally, it's raining on n non-intersecting segments, the i -th segment which is in the rain is represented as [li,ri] ( 0≤li<ri≤a ).
There are m umbrellas lying on the line, the i -th umbrella is located at point xi ( 0≤xi≤a ) and has weight pi . When Polycarp begins his journey, he doesn't have any umbrellas.
During his journey from x=0 to x=a Polycarp can pick up and throw away umbrellas. Polycarp picks up and throws down any umbrella instantly. He can carry any number of umbrellas at any moment of time. Because Polycarp doesn't want to get wet, he must carry at least one umbrella while he moves from x to x+1 if a segment [x,x+1] is in the rain (i.e. if there exists some i such that li≤x and x+1≤ri ).
The condition above is the only requirement. For example, it is possible to go without any umbrellas to a point where some rain segment starts, pick up an umbrella at this point and move along with an umbrella. Polycarp can swap umbrellas while he is in the rain.
Each unit of length passed increases Polycarp's fatigue by the sum of the weights of umbrellas he carries while moving.
Can Polycarp make his way from point x=0 to point x=a ? If yes, find the minimum total fatigue after reaching x=a , if Polycarp picks up and throws away umbrellas optimally.
输入格式
The first line contains three integers a , n and m ( 1≤a,m≤2000,1≤n≤⌈2a⌉ ) — the point at which Polycarp's friend lives, the number of the segments in the rain and the number of umbrellas.
Each of the next n lines contains two integers li and ri ( 0≤li<ri≤a ) — the borders of the i -th segment under rain. It is guaranteed that there is no pair of intersecting segments. In other words, for each pair of segments i and j either ri<lj or rj<li .
Each of the next m lines contains two integers xi and pi ( 0≤xi≤a , 1≤pi≤105 ) — the location and the weight of the i -th umbrella.
输出格式
Print "-1" (without quotes) if Polycarp can't make his way from point x=0 to point x=a . Otherwise print one integer — the minimum total fatigue after reaching x=a , if Polycarp picks up and throws away umbrellas optimally.
输入输出样例
输入#1
10 2 4 3 7 8 10 0 10 3 4 8 1 1 2
输出#1
14
输入#2
10 1 1 0 9 0 5
输出#2
45
输入#3
10 1 1 0 9 1 5
输出#3
-1
说明/提示
In the first example the only possible strategy is to take the fourth umbrella at the point x=1 , keep it till the point x=7 (the total fatigue at x=7 will be equal to 12 ), throw it away, move on from x=7 to x=8 without an umbrella, take the third umbrella at x=8 and keep it till the end (the total fatigue at x=10 will be equal to 14 ).
In the second example the only possible strategy is to take the first umbrella, move with it till the point x=9 , throw it away and proceed without an umbrella till the end.