ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

【leetcode】1551. Minimum Operations to Make Array Equal

2021-05-21 14:33:59  阅读:156  来源: 互联网

标签:1551 Operations arr elements target res Make array operation


题目如下:

You have an array arr of length n where arr[i] = (2 * i) + 1 for all valid values of i (i.e. 0 <= i < n).

In one operation, you can select two indices x and y where 0 <= x, y < n and subtract 1 from arr[x] and add 1 to arr[y] (i.e. perform arr[x] -=1 and arr[y] += 1). The goal is to make all the elements of the array equal. It is guaranteed that all the elements of the array can be made equal using some operations.

Given an integer n, the length of the array. Return the minimum number of operations needed to make all the elements of arr equal.

Example 1:

Input: n = 3
Output: 2
Explanation: arr = [1, 3, 5]
First operation choose x = 2 and y = 0, this leads arr to be [2, 3, 4]
In the second operation choose x = 2 and y = 0 again, thus arr = [3, 3, 3].

Example 2:

Input: n = 6
Output: 9 

Constraints:

  • 1 <= n <= 10^4

解题思路:每次操作都是加一减一,即数组的和是不变的,由此可知最后必定是所有元素的值等于数组的平均值。因此结果是所有元素与平均值的差的绝对值的和除以二。

代码如下:

class Solution(object):
    def minOperations(self, n):
        """
        :type n: int
        :rtype: int
        """
        res = 0
        if n % 2 == 1:
            target =  2*(n/2) + 1
        else:
            target =  ((2*(n/2) + 1) + 2*(n/2-1) + 1)/2

        for i in range(n/2):
            res += (target - 2*i -1)
        return res

 

标签:1551,Operations,arr,elements,target,res,Make,array,operation
来源: https://www.cnblogs.com/seyjs/p/14793562.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有