Update appNew update is available. Click here to update.
Last Updated: 18 Feb, 2021
Ninja And Chocolates
Moderate
Problem statement

Ninja is hungry and wants to eat his favorite chocolates but his mother won’t let him eat since he has already eaten enough chocolates. There are β€˜N’ jars filled with chocolates. His mother has gone to the market and will home come after β€˜M’ minutes. The ninja can eat up to β€˜X’ chocolates per minute. Every minute when his mother is not there, he chooses any jar and takes out β€˜X’ chocolates from that jar, and eats them. If any jar has less than β€˜X’ chocolates, then he eats all of the chocolates in that jar but won’t eat any more chocolates during this minute. Your task is to print β€˜X’ the minimum chocolate-eating speed of Ninja such that he eats all the chocolates within β€˜M’ minutes before his mother comes back.

Input Format :
The first line of the input contains an integer 'T' denoting the number of test cases.

The first line of each test case contains two space-separated integers 'N' and 'M', the number of jars, and the minutes after which his mother comes back.

The second line of each test case contains 'N' space-separated integers, the number of chocolates present in 'N' jars.
Output Format:
For every test case, the only line of output should contain an integer 'X', the minimum chocolate-eating speed of Ninja as described in the problem statement. 

Print the output of each test case in a separate line.
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function. 
Constraints :
1 <= T <= 5
1 <=  N <= 10^6
N <= M <= 10^9
1 <= chocolates[i] <= 10^9

Time limit: 1 sec
Approaches

01Approach

The brute force approach to this problem is that we continuously iterate on the speed of eating chocolates till Ninja can eat all the chocolates within β€˜M’ Minutes.

 

Algorithm:

  1. Make a variable β€˜sum’, which will store the sum of all chocolates which are present in all N jars.
  2. Now to find the starting speed, we’ll use the fact that our required speed has to be greater than the average speed(sum/M), else the Ninja won’t be able to finish all the chocolates, hence make an integer variable β€˜speed’ = ceil(sum/M), where ceil will return the smallest integer that is greater than or equal to (sum/M). The maximum speed will be max(chocolates[i]).
  3. Now run a while(true) loop.
    1. Initialize an integer β€˜currentMinute’ = 0, which will store the time to eat all the chocolates with current speed.
    2. Run a loop(loop variable β€˜i’) from 0 till N-1.
      1. For each β€˜i’ do the operation, currentMinute = currentMinute + ceil((chocolates[i])/(speed)).
      2. After each operation check if currentMinute > M, if this is true exit this loop.
    3. If currentMinute <= M, exit this while loop. The current speed will be the minimum speed to eat all the chocolates.
    4. After all the above increment speed by 1.
  4. After exiting the while loop, return speed.