Skip to content

Latest commit

 

History

History
55 lines (38 loc) · 1.35 KB

leecode575.md

File metadata and controls

55 lines (38 loc) · 1.35 KB

575. 分糖果

地址:https://leetcode-cn.com/problems/distribute-candies/

题目描述

给定一个偶数长度的数组,其中不同的数字代表着不同种类的糖果,每一个数字代表一个糖果。你需要把这些糖果平均分给一个弟弟和一个妹妹。返回妹妹可以获得的最大糖果的种类数。

示例1

输入: candies = [1,1,2,2,3,3]
输出: 3
解析: 一共有三种种类的糖果,每一种都有两个。
     最优分配方案:妹妹获得[1,2,3],弟弟也获得[1,2,3]。这样使妹妹获得糖果的种类数最多。

示例2

输入: candies = [1,1,2,3]
输出: 2
解析: 妹妹获得糖果[2,3],弟弟获得糖果[1,1],妹妹有两种不同的糖果,弟弟只有一种。这样使得妹妹可以获得的糖果种类数最多。

我的解法

class Solution:
    def distributeCandies(self, candyType: List[int]) -> int:
        dics = Counter(candyType)
        n = len(dics)
        count = 0
        for i in dics:
            if dics[i] == 1:
                count += 1
        if count >= len(candyType)//2:
            return len(candyType)//2
        else:
            return min(n,len(candyType)//2)

参考解法

class Solution:
    def distributeCandies(self, candyType: List[int]) -> int:
        return min(len(set(candyType)), len(candyType) // 2)