
Asked in Apple
Kevin and his Fruits Problem Statement
Kevin has 'N' buckets, each consisting of a certain number of fruits. Kevin wants to eat at least 'M' fruits. He is looking to set a marker as high as possible such that if he eats the number of fruits in the i-th bucket minus the marker, the total must be at least 'M'.
Input:
The input begins with a single integer 'T', the number of test cases.
Each test case consists of:
- Two space-separated integers 'N' (number of buckets) and 'M' (minimum fruits to eat).
- A second line with 'N' space-separated integers indicating the number of fruits in each bucket.
Output:
For each test case, print the marker value needed, with each output on a new line.
Example:
Input:
1
4 30
10 40 30 20
Output:
20
Constraints:
- 1 <= T <= 10
- 1 <= N <= 104
- 1 <= M <= 106
- 0 <= ARR[i] <= 104
Note:
It is guaranteed that the total number of fruits in all buckets is greater than 'M'. Kevin can only eat fruits from a bucket if the bucket has more fruits than the marker.

AnswerBot
4mo
Find the marker value needed for Kevin to eat at least 'M' fruits from 'N' buckets.
Iterate through each test case and calculate the marker value needed based on the number of fruits in each bucket.
Sub...read more

Devendra Badgujar
5mo
works at
10
20
10
Help your peers!
Add answer anonymously...
Top Software Developer Intern Interview Questions Asked at Apple
Q. Max GCD Pair Problem Statement Given an array of positive integers, determine th...read more
Q. Lazy Santa Problem Statement It's Christmas and Santa has 'K' gifts to distribut...read more
Q. Ninja and Candies Problem Ninja, a boy from Ninjaland, receives 1 coin every mor...read more
Interview Questions Asked to Software Developer Intern at Other Companies
Top Skill-Based Questions for Apple Software Developer Intern
C++ Interview Questions and Answers
300 Questions
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Operating Systems Interview Questions and Answers
250 Questions
System Design Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

