1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/koko-eating-bananas.cs

23 lines
545 B
C#
Raw Normal View History

public class Solution {
public int MinEatingSpeed(int[] piles, int h) {
double getTotal(int hourly) => piles.Sum(p => double.Ceiling(p / (double)hourly));
int answer = -1;
int low = 1, high = piles.Max();
while (low <= high) {
var mid = (low + high) / 2;
var total = getTotal(mid);
if (total <= h) {
answer = mid;
high = mid - 1;
} else {
low = mid + 1;
}
}
return answer;
}
}