博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
453. Minimum Moves to Equal Array Elements 一次改2个数,变成统一的
阅读量:5103 次
发布时间:2019-06-13

本文共 1472 字,大约阅读时间需要 4 分钟。

[抄题]:

Given a non-empty integer array of size n, find the minimum number of moves required to make all array elements equal, where a move is incrementing n - 1 elements by 1.

Example:

Input:[1,2,3]Output:3Explanation:Only three moves are needed (remember each move increments two elements):[1,2,3]  =>  [2,3,3]  =>  [3,4,3]  =>  [4,4,4]

 [暴力解法]:

时间分析:

空间分析:

 [优化后]:

时间分析:

空间分析:

[奇葩输出条件]:

[奇葩corner case]:

[思维问题]:

[一句话思路]:

逆向思维:n - 1 个数+1是抬高标准,也可以降低标准 一个数-1

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

[总结]:

逆向思维的关键:抬高标准的效果=降低标准

[复杂度]:Time complexity: O(n) Space complexity: O(1)

[英文数据结构或算法,为什么不用别的数据结构或算法]:

Adding 1 to n - 1 elements is the same as subtracting 1 from one element, w.r.t goal of making the elements in the array equal.

So, best way to do this is make all the elements in the array equal to the min element.
sum(array) - n * minimum  n-1元素+1=一个元素-1

[关键模板化代码]:

[其他解法]:

[Follow Up]:

462. Minimum Moves to Equal Array Elements II 还是数学题

[LC给出的题目变变变]:

 [代码风格] :

class Solution {    public int minMoves(int[] nums) {        //ini:sort        Arrays.sort(nums);        int res = 0, min = nums[0];                //find min        for (int num : nums) {            min = Math.min(min, num);            }                //add res        for (int num : nums) {            res += (num - min);        }                //return        return res;    }}
View Code

 

转载于:https://www.cnblogs.com/immiao0319/p/8984147.html

你可能感兴趣的文章
MyBaits动态sql语句
查看>>
HDU4405(期望DP)
查看>>
拉格朗日乘子法 那些年学过的高数
查看>>
vs code 的便捷使用
查看>>
Spring MVC @ResponseBody返回中文字符串乱码问题
查看>>
用户空间与内核空间,进程上下文与中断上下文[总结]
查看>>
JS 中的跨域请求
查看>>
JAVA开发环境搭建
查看>>
mysql基础语句
查看>>
Oracle中的rownum不能使用大于>的问题
查看>>
[Data Structure & Algorithm] 有向无环图的拓扑排序及关键路径
查看>>
cassandra vs mongo (1)存储引擎
查看>>
Visual Studio基于CMake配置opencv1.0.0、opencv2.2
查看>>
遍历Map对象
查看>>
MySQL索引背后的数据结构及算法原理
查看>>
#Leetcode# 209. Minimum Size Subarray Sum
查看>>
SDN第四次作业
查看>>
DM8168 DVRRDK软件框架研究
查看>>
django迁移数据库错误
查看>>
yii 跳转页面
查看>>