前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >781. Rabbits in Forest

781. Rabbits in Forest

作者头像
用户1147447
发布2019-05-26 00:31:33
2690
发布2019-05-26 00:31:33
举报
文章被收录于专栏:机器学习入门机器学习入门

LWC 71: 781. Rabbits in Forest

Problem:

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.

Examole:

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

Note:

  • answers will have length at most 1000.
  • Each answers[i] will be an integer in the range [0, 999].

思路: 贪心,如果出现[1, 1, 1, 1]这种情况,组合{1, 1}为同一颜色的兔子,这样情况最少[{1, 1}, {1, 1}]总共有4只兔子。再看[2, 2, 2, 2, 2],可以组合{2, 2, 2} 和{2, 2}。所以先统计频次,后组合。

代码如下:

代码语言:javascript
复制
    public int numRabbits(int[] answers) {
        int[] map = new int[1024];
        for (int ans : answers) {
            map[ans]++;
        }
        int ans = 0;
        for (int i = 0; i < 1024; ++i) {
            if (map[i] != 0) {
                int batch = i + 1;
                int count = map[i] / batch;
                if (map[i] % batch != 0) count++;
                ans += batch * count;
            }
        }
        return ans;
    }

python 版本:

代码语言:javascript
复制
class Solution(object):
    def numRabbits(self, answers):
        """
        :type answers: List[int]
        :rtype: int
        """
        from collections import Counter
        count = Counter(answers)
        ans = 0
        for val, freq in count.items():
            ans += (freq + val) // (val + 1) * (val + 1)
        return ans
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年02月11日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 71: 781. Rabbits in Forest
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档