【python3】leetcode 781. Rabbits in Forest (medium)

120 篇文章 0 订阅

781. Rabbits in Forest (medium)

In a forest, each rabbit has some color. Some subset of rabbits (possibly all of them) tell you how many other rabbits have the same color as them. Those answers are placed in an array.

Return the minimum number of rabbits that could be in the forest.

Examples:
Input: answers = [1, 1, 2]
Output: 5
Explanation:
The two rabbits that answered "1" could both be the same color, say red.
The rabbit than answered "2" can't be red or the answers would be inconsistent.
Say the rabbit that answered "2" was blue.
Then there should be 2 other blue rabbits in the forest that didn't answer into the array.
The smallest possible number of rabbits in the forest is therefore 5: 3 that answered plus 2 that didn't.

Input: answers = [10, 10, 10]
Output: 11

Input: answers = []
Output: 0

1思路:用hashmap

dict[num] = n ,统计有n个说 num个别的兔子和自己颜色相同,如果n <= num+1,则这n个兔子颜色 相同,

即每num+1 数量组可以看成一个颜色(1组),计算n可以分成几组

如 answers = [10, 10, 10]

3只兔子说还有10个别的兔子和自己颜色一样-》dic[10] = 3

有11个兔子可以看成一个颜色比如黄色,3<11 可以看成同一组的颜色,所以至少有1组黄色的兔子-》11只

如果dic[10] = 13 > 11,那么11只是一组比如黄色,还有2只是另外一个11人组 比如红色,那么至少2组 -》22只 = 2*11

class Solution:
    def numRabbits(self, answers):
        """
        :type answers: List[int]
        :rtype: int
        """
        if len(answers) == 0:return 0
        dic = {}
        num = 0
        for i,x in enumerate(answers):
            dic[x] = dic.setdefault(x,0) + 1
        for key,val in dic.items():
            num += math.ceil(val/(key+1)) * (key + 1)
        return num

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值