Hide

Problem A
Ding Dong Ditch

Languages en sv

Raunak and his friends want to play a prank on their neighbors by performing the classic "Ding Dong Ditch". They want to individually ring the doorbell of a number of their neighbors and then run away from there. But some neighbors are very dangerous, since they could get very angry and even potentially bite you!

There are N neighbors that live on their street. For each neighbor i, the neighbor has a value Ai that represents how angry they become when their doorbell is rung. Raunak has Q friends, including himself. For each friend j they have a specific level of ambition Bj, which represents the number of houses they can ring the doorbell on before chickening out.

For each friend who rings the doorbell, they want to choose Bj different houses that minimizes the sum of the anger values Ai of all of those houses. Help Raunak figure out the smallest possible sum of anger values that each friend can achieve!

Note that multiple friends may ring the doorbell of the same house.

Input

The first line consists of two positive integers N,Q (1N2105, 1Q105), the number of houses in the neighborhood and the number of friends that Raunak has, respectively. The next line consists of N distinct positive integers separated by spaces, where each integer 1Ai109 represents the anger value of each neighbor. The last line consists of Q positive integers separated by spaces, where each integer 1BjN represents how many houses that friend j can ring the doorbell of.

Output

Print Q lines, where each line consists of an integer - The smallest sum of anger value that friend j can achieve by ringing Bj doorbells.

Grading

Your solution will be tested on a number of test-case groups. To receive points for a group, your solution must correctly solve every test-case in the group.

Group

Point value

Constraints

1

10

Q=1,N10

2

25

Q103,N100

3

10

All Bj are either 1 or N.

4

20

Q103,N104

5

35

No further restrictions

Sample Input 1 Sample Output 1
4 2
3 2 1 4
3 1
6
1
Sample Input 2 Sample Output 2
5 1
12 2 14 6 9
3
17
Hide

Please log in to submit a solution to this problem

Log in