Leetcode - Find K Pairs with Smallest Sums
Leetcode - Number of Sub-arrays of Size K and Average Greater than or Equal to Threshold

Leetcode - Kids With the Greatest Number of Candies

violet posted @ May 05, 2020 05:45:43 AM in 算法 with tags Algorithm Golang array , 183 阅读

https://leetcode.com/problems/kids-with-the-greatest-number-of-candies/

Given the array candies and the integer extraCandies, where candies[i] represents the number of candies that the ith kid has.

For each kid check if there is a way to distribute extraCandies among the kids such that he or she can have the greatest number of candies among them. Notice that multiple kids can have the greatest number of candies.

 

Example 1:

Input: candies = [2,3,5,1,3], extraCandies = 3
Output: [true,true,true,false,true] 
Explanation: 
Kid 1 has 2 candies and if he or she receives all extra candies (3) will have 5 candies --- the greatest number of candies among the kids. 
Kid 2 has 3 candies and if he or she receives at least 2 extra candies will have the greatest number of candies among the kids. 
Kid 3 has 5 candies and this is already the greatest number of candies among the kids. 
Kid 4 has 1 candy and even if he or she receives all extra candies will only have 4 candies. 
Kid 5 has 3 candies and if he or she receives at least 2 extra candies will have the greatest number of candies among the kids. 

 

func kidsWithCandies(nums []int, extraCandies int) []bool {
    if len(nums) == 0 {
        return []bool{}
    }
    max := nums[0]
    for _, n := range nums {
        if max < n {
            max = n
        }
    }
    result := make([]bool, len(nums))
    for i := 0; i < len(nums); i++ {
        if nums[i] + extraCandies >= max {
            result[i] = true
        }
    }
    return result
}

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter