Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.88 KB

781-rabbits-in-forest.md

File metadata and controls

63 lines (44 loc) · 1.88 KB

781. Rabbits in Forest - 森林中的兔子

森林中,每个兔子都有颜色。其中一些兔子(可能是全部)告诉你还有多少其他的兔子和自己有相同的颜色。我们将这些回答放在 answers 数组里。

返回森林中兔子的最少数量。

示例:
输入: answers = [1, 1, 2]
输出: 5
解释:
两只回答了 "1" 的兔子可能有相同的颜色,设为红色。
之后回答了 "2" 的兔子不会是红色,否则他们的回答会相互矛盾。
设回答了 "2" 的兔子为蓝色。
此外,森林中还应有另外 2 只蓝色兔子的回答没有包含在数组中。
因此森林中兔子的最少数量是 5: 3 只回答的和 2 只没有回答的。

输入: answers = [10, 10, 10]
输出: 11

输入: answers = []
输出: 0

说明:

  1. answers 的长度最大为1000
  2. answers[i] 是在 [0, 999] 范围内的整数。

题目标签:Hash Table / Math

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
python3 48 ms N/A
import math

class Solution:
    def numRabbits(self, answers):
        """
        :type answers: List[int]
        :rtype: int
        """
        res = 0
        for k, v in collections.Counter(answers).items():
            res += (k + 1) * int(math.ceil(v / (k + 1)))
        return res