• leetcode - 1887. Reduction Operations to Make the Array Elements Equal


    Description

    Given an integer array nums, your goal is to make all elements in nums equal. To complete one operation, follow these steps:

    Find the largest value in nums. Let its index be i (0-indexed) and its value be largest. If there are multiple elements with the largest value, pick the smallest i.
    Find the next largest value in nums strictly smaller than largest. Let its value be nextLargest.
    Reduce nums[i] to nextLargest.
    Return the number of operations to make all elements in nums equal.
    
    • 1
    • 2
    • 3
    • 4

    Example 1:

    Input: nums = [5,1,3]
    Output: 3
    Explanation: It takes 3 operations to make all elements in nums equal:
    1. largest = 5 at index 0. nextLargest = 3. Reduce nums[0] to 3. nums = [3,1,3].
    2. largest = 3 at index 0. nextLargest = 1. Reduce nums[0] to 1. nums = [1,1,3].
    3. largest = 3 at index 2. nextLargest = 1. Reduce nums[2] to 1. nums = [1,1,1].
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    Example 2:

    Input: nums = [1,1,1]
    Output: 0
    Explanation: All elements in nums are already equal.
    
    • 1
    • 2
    • 3

    Example 3:

    Input: nums = [1,1,2,2,3]
    Output: 4
    Explanation: It takes 4 operations to make all elements in nums equal:
    1. largest = 3 at index 4. nextLargest = 2. Reduce nums[4] to 2. nums = [1,1,2,2,2].
    2. largest = 2 at index 2. nextLargest = 1. Reduce nums[2] to 1. nums = [1,1,1,2,2].
    3. largest = 2 at index 3. nextLargest = 1. Reduce nums[3] to 1. nums = [1,1,1,1,2].
    4. largest = 2 at index 4. nextLargest = 1. Reduce nums[4] to 1. nums = [1,1,1,1,1].
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    Constraints:

    1 <= nums.length <= 5 * 10^4
    1 <= nums[i] <= 5 * 10^4
    
    • 1
    • 2

    Solution

    Generate a frequency list of the nums, then sort it, from right to left add how many operations we need to perform

    Time complexity: o ( n log ⁡ n ) o(n\log n) o(nlogn)
    Space complexity: o ( n ) o(n) o(n)

    Code

    class Solution:
        def reductionOperations(self, nums: List[int]) -> int:
            num_cnt = {}
            for each_num in nums:
                num_cnt[each_num] = num_cnt.get(each_num, 0) + 1
            res = 0
            arr = sorted(num_cnt.items(), key=lambda x:x[0])
            for i in range(len(arr) - 1, 0, -1):
                res += i * arr[i][1]
            return res
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
  • 相关阅读:
    C++语法基础(5)——数组与字符串
    Java 将Map转成Json
    SQL进阶 - SQL的编程规范
    触摸屏如何利用无线PPI通信模块远程采集PLC数据?
    WebGIS开发教程:geojson
    二、I/O模型
    基于javaweb简单的在线考试系统
    【计算机架构】python并发编程:多线程和线程池
    web学生网页设计作业源码 HTML+CSS+JS 网上鲜花商城购物网站
    Springboot @Profile使用详解
  • 原文地址:https://blog.csdn.net/sinat_41679123/article/details/134489221