Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.19 KB

453-minimum-moves-to-equal-array-elements.md

File metadata and controls

46 lines (30 loc) · 1.19 KB

453. Minimum Moves to Equal Array Elements - 最小移动次数使数组元素相等

给定一个长度为 n非空整数数组,找到让数组所有元素相等的最小移动次数。每次移动可以使 n - 1 个元素增加 1。

示例:

输入:
[1,2,3]

输出:
3

解释:
只需要3次移动(注意每次移动会增加两个元素的值):

[1,2,3]  =>  [2,3,3]  =>  [3,4,3]  =>  [4,4,4]

题目标签:Math

题目链接:LeetCode / LeetCode中国

题解

每次操作,其它元素都+1,等效于一个元素相对-1

Language Runtime Memory
python3 52 ms N/A
class Solution:
    def minMoves(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        return sum(nums) - min(nums) * len(nums)