LeetCode每日一题(517. Super Washing Machines)

给定一个整数数组 machines,表示从左到右每台洗衣机上的衣服数量。目标是通过最少的操作次数,使得所有洗衣机上的衣服数量相等。每次操作可以选择任意 m (1 <= m <= n) 台洗衣机,并同时向相邻的一台洗衣机传递一件衣服。如果无法使所有洗衣机衣服数量相同,则返回 -1。例如,输入 [1,0,5],输出为 3,经过三次操作,所有洗衣机都有两件衣服。" 117109109,10293547,奇数阶幻方构造:C语言实现与算法解析,"['算法', 'C语言', '数学', '数值计算']
摘要由CSDN通过智能技术生成

You have n super washing machines on a line. Initially, each washing machine has some dresses or is empty.

For each move, you could choose any m (1 <= m <= n) washing machines, and pass one dress of each washing machine to one of its adjacent washing machines at the same time.

Given an integer array machines representing the number of dresses in each washing machine from left to right on the line, return the minimum number of moves to make all the washing machines have the same number of dresses. If it is not possible to do it, return -1.

Example 1:

Input: machines = [1,0,5]
Output: 3

Explanation:
1st move: 1 0 <-- 5 => 1 1 4
2nd move: 1 <-- 1 <-- 4 => 2 1 3
3rd move: 2 1 <-- 3 => 2 2 2

Example 2:

Input: machines = [0,3,0]
Output: 2

Explanation:
1st move: 0 <-- 3 0 => 1 2 0
2nd move: 1 2 --> 0 => 1 1 1

Example 3:

Input: machines = [0,2,0]
Output: -1

Explanation:
It’s impossible to make all three washing machines have the same number of dresses.

Constraints:

  • n == machines.length
  • 1 <= n <= 104
  • 0 <= machines[i] <= 105

看了人家发上去的解析, 想了半天, 感觉有点理解了。其实我们要找的是一个向左右两边都输出的机器, 当然这个左右两边实际上包括左边为空或者右边为空的情况。而且这个最大值一定是存在的。不好描述, 大家还是看原文自己理解吧。



impl 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值