COCI '12 Contest 3 #4 Aerodrom

View as PDF

Submit solution


Points: 7 (partial)
Time limit: 1.0s
Memory limit: 32M

Problem types

The Croatian delegation, consisting of M people, is travelling to IOI 2013 in Australia. They are currently waiting in a queue for check-in at the airport. There are N check-in desks open. Some officials work more efficiently than others, so the desks operate at different speeds. At the k^\text{th} desk, T_k seconds are required to finish check-in of a single passenger, and members of our delegation happen to know the exact numbers.

In the beginning, all desks are ready to accept the next passenger, and the delegation members are the only people in the queue. A person can only occupy (start check-in at) an available desk when all people in front of that person in the queue have left the queue (started, not necessarily finished, check-in) already. At that moment, the person can immediately occupy an available desk (if there is one), but can also choose to wait for another (faster) desk to become available. Our delegation members, being computer science geeks, make this decision in such a way that the moment when all of them have finished check-in is as soon as possible. Your task is finding that moment in time.

Let us describe the scenario from the first example below. There are two desks, with processing times of 7 and 10 seconds, respectively. Out of the six people in the delegation, the first two immediately occupy the two desks. At time 7, the first desk is freed, and the third person occupies it. At time 10, the fourth person occupies the second desk. At time 14, the fifth person occupies the first desk. At time 20, the second desk is freed again, but the sixth person decides to wait another second (time 21) for the first desk to become available, and then occupy it. This way, the check-in is completed by time 28. If the sixth person hadn't waited for the faster desk, the check-in would have taken a total of 30 seconds.

Input Specification

The first line of input contains two positive integers, N (1 \le N \le 100\,000), the number of desks, and M (1 \le M \le 1\,000\,000\,000), the number of people in the delegation.

Each of the following N lines contains a number T_k (1 \le T_k \le 10^9) from the problem statement.

In test data worth a total of 75/120 of the points, M will be at most 300\,000.

Output Specification

The first and only line of output must contain the required minimum time in seconds.

Sample Input 1

2 6
7
10

Sample Output 1

28

Sample Input 2

7 10
3
8
3
6
9
2
4

Sample Output 2

8

Comments

There are no comments at the moment.