Tap here to switch tabs
Problem
Ask
Submissions

Problem: Koko Eating Bananas

med
30 min
Explore how to solve the Koko Eating Bananas problem by applying modified binary search. Understand how to determine the minimum eating speed to finish bananas within a given time frame, improving your skills for coding interviews that require efficient searching algorithms.

Statement

Koko has nn piles of bananas in front of her, where the ithi^{th} pile has piles[i] bananas. The guards have left and will return in h hours, and Koko must finish all the bananas before they come back.

Before eating, Koko chooses an integer as an eating speed kk (bananas per hour). She keeps this speed constant throughout.

In each hour, Koko selects one pile of bananas and eats from it according to the following rules:

  • If the pile contains at least kk bananas, she eats exactly kk bananas from it.

  • If the pile contains fewer than kk bananas, she eats all the bananas from that pile and does not eat from any other pile during that hour.

Your task is to return the minimum eating speed kk that allows Koko to finish all the bananas within h hours before the guards return.

Constraints:

  • 11 \leq piles.length \leq 10310^{3}

  • piles.length \leqh \leq 10910^{9}

  • 11 \leqpiles[i] \leq 10410^{4}

Tap here to switch tabs
Problem
Ask
Submissions

Problem: Koko Eating Bananas

med
30 min
Explore how to solve the Koko Eating Bananas problem by applying modified binary search. Understand how to determine the minimum eating speed to finish bananas within a given time frame, improving your skills for coding interviews that require efficient searching algorithms.

Statement

Koko has nn piles of bananas in front of her, where the ithi^{th} pile has piles[i] bananas. The guards have left and will return in h hours, and Koko must finish all the bananas before they come back.

Before eating, Koko chooses an integer as an eating speed kk (bananas per hour). She keeps this speed constant throughout.

In each hour, Koko selects one pile of bananas and eats from it according to the following rules:

  • If the pile contains at least kk bananas, she eats exactly kk bananas from it.

  • If the pile contains fewer than kk bananas, she eats all the bananas from that pile and does not eat from any other pile during that hour.

Your task is to return the minimum eating speed kk that allows Koko to finish all the bananas within h hours before the guards return.

Constraints:

  • 11 \leq piles.length \leq 10310^{3}

  • piles.length \leqh \leq 10910^{9}

  • 11 \leqpiles[i] \leq 10410^{4}