1103. Distribute Candies to People
We distribute some number of candies
, to a row of n = num_people
people in the following way:
We then give 1 candy to the first person, 2 candies to the second person, and so on until we give n
candies to the last person.
Then, we go back to the start of the row, giving n + 1
candies to the first person, n + 2
candies to the second person, and so on until we give 2 * n
candies to the last person.
This process repeats (with us giving one more candy each time, and moving to the start of the row after we reach the end) until we run out of candies. The last person will receive all of our remaining candies (not necessarily one more than the previous gift).
Return an array (of length num_people
and sum candies
) that represents the final distribution of candies.
Example 1:
Example 2:
Constraints:
1 <= candies <= 10^9
1 <= num_people <= 1000
解题要点:
新建一个空list,长度为人数数量。由于发放糖果的数量为递增+1,且知道list固定长度,可以通过mod来找出超出长度后的index。每发放一次糖果,便要在总数里减去相应糖果,直到发放完毕。
Last updated
Was this helpful?