1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00

cs: add «875. Koko Eating Bananas»

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-08-18 23:16:19 +02:00
parent 3a5d2ec0e6
commit 9bce3c655a
Signed by: mfocko
SSH key fingerprint: SHA256:icm0fIOSJUpy5+1x23sfr+hLtF9UhY8VpMC7H4WFJP8

22
cs/koko-eating-bananas.cs Normal file
View file

@ -0,0 +1,22 @@
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;
}
}