CF813A.The Contest
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Pasha is participating in a contest on one well-known website. This time he wants to win the contest and will do anything to get to the first place!
This contest consists of n problems, and Pasha solves i th problem in ai time units (his solutions are always correct). At any moment of time he can be thinking about a solution to only one of the problems (that is, he cannot be solving two problems at the same time). The time Pasha spends to send his solutions is negligible. Pasha can send any number of solutions at the same moment.
Unfortunately, there are too many participants, and the website is not always working. Pasha received the information that the website will be working only during m time periods, j th period is represented by its starting moment lj and ending moment rj . Of course, Pasha can send his solution only when the website is working. In other words, Pasha can send his solution at some moment T iff there exists a period x such that lx<=T<=rx .
Pasha wants to know his best possible result. We need to tell him the minimal moment of time by which he is able to have solutions to all problems submitted, if he acts optimally, or say that it's impossible no matter how Pasha solves the problems.
输入格式
The first line contains one integer n (1<=n<=1000) — the number of problems. The second line contains n integers ai (1<=ai<=105) — the time Pasha needs to solve i th problem.
The third line contains one integer m (0<=m<=1000) — the number of periods of time when the website is working. Next m lines represent these periods. j th line contains two numbers lj and r_{j} (1<=l_{j}<r_{j}<=10^{5}) — the starting and the ending moment of j th period.
It is guaranteed that the periods are not intersecting and are given in chronological order, so for every j>1 the condition l_{j}>r_{j-1} is met.
输出格式
If Pasha can solve and submit all the problems before the end of the contest, print the minimal moment of time by which he can have all the solutions submitted.
Otherwise print "-1" (without brackets).
输入输出样例
输入#1
2 3 4 2 1 4 7 9
输出#1
7
输入#2
1 5 1 1 4
输出#2
-1
输入#3
1 5 1 1 5
输出#3
5
说明/提示
In the first example Pasha can act like this: he solves the second problem in 4 units of time and sends it immediately. Then he spends 3 time units to solve the first problem and sends it 7 time units after the contest starts, because at this moment the website starts working again.
In the second example Pasha invents the solution only after the website stops working for the last time.
In the third example Pasha sends the solution exactly at the end of the first period.