CF1700D.River Locks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Recently in Divanovo, a huge river locks system was built. There are now nn locks, the ii -th of them has the volume of viv_i liters, so that it can contain any amount of water between 00 and viv_i liters. Each lock has a pipe attached to it. When the pipe is open, 11 liter of water enters the lock every second.

The locks system is built in a way to immediately transfer all water exceeding the volume of the lock ii to the lock i+1i + 1 . If the lock i+1i + 1 is also full, water will be transferred further. Water exceeding the volume of the last lock pours out to the river.

The picture illustrates 55 locks with two open pipes at locks 11 and 33 . Because locks 11 , 33 , and 44 are already filled, effectively the water goes to locks 22 and 55 .Note that the volume of the ii -th lock may be greater than the volume of the i+1i + 1 -th lock.

To make all locks work, you need to completely fill each one of them. The mayor of Divanovo is interested in qq independent queries. For each query, suppose that initially all locks are empty and all pipes are closed. Then, some pipes are opened simultaneously. For the jj -th query the mayor asks you to calculate the minimum number of pipes to open so that all locks are filled no later than after tjt_j seconds.

Please help the mayor to solve this tricky problem and answer his queries.

输入格式

The first lines contains one integer nn ( 1n2000001 \le n \le 200\,000 ) — the number of locks.

The second lines contains nn integers v1,v2,,vnv_1, v_2, \dots, v_n ( 1vi1091 \le v_i \le 10^9 )) — volumes of the locks.

The third line contains one integer qq ( 1q2000001 \le q \le 200\,000 ) — the number of queries.

Each of the next qq lines contains one integer tjt_j ( 1tj1091 \le t_j \le 10^9 ) — the number of seconds you have to fill all the locks in the query jj .

输出格式

Print qq integers. The jj -th of them should be equal to the minimum number of pipes to turn on so that after tjt_j seconds all of the locks are filled. If it is impossible to fill all of the locks in given time, print 1-1 .

输入输出样例

  • 输入#1

    5
    4 1 5 4 1
    6
    1
    6
    2
    3
    4
    5

    输出#1

    -1
    3
    -1
    -1
    4
    3
  • 输入#2

    5
    4 4 4 4 4
    6
    1
    3
    6
    5
    2
    4

    输出#2

    -1
    -1
    4
    4
    -1
    5

说明/提示

There are 66 queries in the first example test.

In the queries 1,3,41, 3, 4 the answer is 1-1 . We need to wait 44 seconds to fill the first lock even if we open all the pipes.

In the sixth query we can open pipes in locks 11 , 33 , and 44 . After 44 seconds the locks 11 and 44 are full. In the following 11 second 11 liter of water is transferred to the locks 22 and 55 . The lock 33 is filled by its own pipe.

Similarly, in the second query one can open pipes in locks 11 , 33 , and 44 .

In the fifth query one can open pipes 1,2,3,41, 2, 3, 4 .

首页