Maximum Candies Allocated to K Children
You are given a 0-indexed integer array candies. Each element in the array denotes a pile of candies of size candies[i]. You can divide each pile into any number of sub piles, but you cannot merge two piles together.
You are also given an integer k. You should allocate piles of candies to k children such that each child gets the same number of candies. Each child can be allocated candies from only one pile of candies and some piles of candies may go unused.
Return the maximum number of candies each child can get.
Example 1
Input
candies = [5,8,6], k = 3Output
5We can allocate three piles of size 5 to the 3 children, and it can be proven that each child cannot receive more than 5 candies.
Example 2
Input
candies = [2,5], k = 11Output
0There are 11 children but only 7 candies in total, so it is impossible to ensure each child receives at least one candy.
Constraints
- 1 <= candies.length <= 10^5
- 1 <= candies[i] <= 10^7
- 1 <= k <= 10^12