Python Leetcode(453.分发饼干)

Python Leetcode(453.分发饼干)

假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。对每个孩子 i ,都有一个胃口值 gi ,这是能让孩子们满足胃口的饼干的最小尺寸;并且每块饼干 j ,都有一个尺寸 sj 。如果 sj >= gi ,我们可以将这个饼干 j 分配给孩子 i ,这个孩子会得到满足。你的目标是尽可能满足越多数量的孩子,并输出这个最大数值。

注意:

你可以假设胃口值为正。
一个小朋友最多只能拥有一块饼干。

示例 1:

输入: [1,2,3], [1,1]

输出: 1

解释:
你有三个孩子和两块小饼干,3个孩子的胃口值分别是:1,2,3。
虽然你有两块小饼干,由于他们的尺寸都是1,你只能让胃口值是1的孩子满足。
所以你应该输出1。

示例 2:

输入: [1,2], [1,2,3]

输出: 2

解释:
你有两个孩子和三块小饼干,2个孩子的胃口值分别是1,2。
你拥有的饼干数量和尺寸都足以让所有孩子满足。
所以你应该输出2.

Solution:(为了防止大饼干用来满足了小胃口的孩子,所以先对两个数组进行排序。然后对孩子数组进行遍历,当孩子的胃口大于等于饼干尺寸时,result加1,且将这块饼干移出数组,最后返回result)

class Solution(object):
    def findContentChildren(self, g, s):
        """
        :type g: List[int]
        :type s: List[int]
        :rtype: int
        """
        g, s = sorted(g), sorted(s)
        result = 0
        if not s:
            return result
        for each_g in g:
            for each_s in s:
                if each_g <= each_s:
                    result += 1
                    s.remove(each_s)
                    break
            if not s:
                break
        return result
                
solution = Solution()
print(solution.findContentChildren([10, 9, 8, 7], [5, 6, 7, 8]))
2

Solution2:(实际上数组已经是排过序的,如果第一块饼干不能满足第一个孩子的话,那么第一块饼干更满足不了其它孩子,就可以把它丢掉了。可以提高算法速度。)

class Solution(object):
    def findContentChildren(self, g, s):
        """
        :type g: List[int]
        :type s: List[int]
        :rtype: int
        """
        g, s = sorted(g), sorted(s)
        result = 0
        i, j = 0, 0
        if not s:
            return result
        while i < len(g) and j < len(s):
            if g[i] <= s[j]:
                result += 1
                i += 1
            j += 1
        return result
                
solution = Solution()
print(solution.findContentChildren([8,19, 13, 3], [3, 5, 2]))
1

你可能感兴趣的:(Python,LeetCode)