#P1005. Eating Queries
Eating Queries
Eating Queries
Problem Description
Timur has candies. The -th candy has a quantity of sugar equal to . So, by eating the -th candy, Timur consumes a quantity of sugar equal to .
Timur will ask you queries regarding his candies. For the -th query you have to answer what is the minimum number of candies he needs to eat in order to reach a quantity of sugar greater than or equal to or print -1 if it's not possible to obtain such a quantity. In other words, you should print the minimum possible such that after eating candies, Timur consumes a quantity of sugar of at least or say that no possible exists.
Note that he can't eat the same candy twice and queries are independent of each other (Timur can use the same candy in different queries).
Input format
The first line of input contains a single integer ( ) — the number of test cases. The description of test cases follows.
The first line contains integers and ( ) — the number of candies Timur has and the number of queries you have to print an answer for respectively.
The second line contains integers ( ) — the quantity of sugar in each of the candies respectively.
Then lines follow.
Each of the next lines contains a single integer ( ) – the quantity Timur wants to reach for the given query.
It is guaranteed that the sum of and the sum of over all test cases do not exceed .
Output format
For each test case output lines. For the -th line output the number of candies Timur needs to eat in order to reach a quantity of sugar greater than or equal to or print -1 if it's not possible to obtain such a quantity.
3
8 7
4 3 3 1 1 4 5 9
1
10
50
14
15
22
30
4 1
1 2 3 4
3
1 2
5
4
6
1
2
-1
2
3
4
8
1
1
-1
Prompt
For the first test case:
For the first query, Timur can eat any candy, and he will reach the desired quantity.
For the second query, Timur can reach a quantity of at least by eating the -th and the -th candies, thus consuming a quantity of sugar equal to .
For the third query, there is no possible answer.
For the fourth query, Timur can reach a quantity of at least by eating the -th and the -th candies, thus consuming a quantity of sugar equal to .
For the second test case:
For the only query of the second test case, we can choose the third candy from which Timur receives exactly sugar. It's also possible to obtain the same answer by choosing the fourth candy.
相关
在下列比赛中: