为有牺牲多壮志,敢教日月换新天。

[Swift]LeetCode517. 超级洗衣机 | Super Washing Machines

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公众号:山青咏芝(shanqingyongzhi)
➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址:https://www.cnblogs.com/strengthen/p/10397331.html 
➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

热烈欢迎,请直接点击!!!

进入博主App Store主页,下载使用各个作品!!!

注:博主将坚持每月上线一个新app!!!

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 representing the number of dresses in each washing machine from left to right on the line, you should find 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.

Example1

Input: [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   

Example2

Input: [0,3,0]

Output: 2

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

Example3

Input: [0,2,0]

Output: -1

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

Note:

  1. The range of n is [1, 10000].
  2. The range of dresses number in a super washing machine is [0, 1e5].

假设有 n 台超级洗衣机放在同一排上。开始的时候,每台洗衣机内可能有一定量的衣服,也可能是空的。

在每一步操作中,你可以选择任意 m (1 ≤ m ≤ n) 台洗衣机,与此同时将每台洗衣机的一件衣服送到相邻的一台洗衣机。

给定一个非负整数数组代表从左至右每台洗衣机中的衣物数量,请给出能让所有洗衣机中剩下的衣物的数量相等的最少的操作步数。如果不能使每台洗衣机中衣物的数量相等,则返回 -1。 

示例 1:

输入: [1,0,5]

输出: 3

解释: 
第一步:    1     0 <-- 5    =>    1     1     4
第二步:    1 <-- 1 <-- 4    =>    2     1     3    
第三步:    2     1 <-- 3    =>    2     2     2   

示例 2:

输入: [0,3,0]

输出: 2

解释: 
第一步:    0 <-- 3     0    =>    1     2     0    
第二步:    1     2 --> 0    =>    1     1     1     

示例 3:

输入: [0,2,0]

输出: -1

解释: 
不可能让所有三个洗衣机同时剩下相同数量的衣物。 

提示:

  1. n 的范围是 [1, 10000]。
  2. 在每台超级洗衣机中,衣物数量的范围是 [0, 1e5]。

Runtime: 84 ms
Memory Usage: 19.2 MB
 1 class Solution {
 2     func findMinMoves(_ machines: [Int]) -> Int {
 3         var sum:Int = machines.reduce(0, +)
 4         if sum % machines.count != 0 {return -1}
 5         var res:Int = 0
 6         var cnt:Int = 0
 7         var avg:Int = sum / machines.count
 8         for m in machines
 9         {
10             cnt += m - avg
11             res = max(res, max(abs(cnt), m - avg))
12         }
13         return res
14     }
15 }

Runtime: 84 ms
Memory Usage: 18.7 MB
 1 class Solution {
 2     func findMinMoves(_ machines: [Int]) -> Int {
 3         var total = 0
 4         for machine in machines {
 5             total += machine
 6         }
 7         
 8         if (total % machines.count != 0) {
 9             return -1
10         } else {
11             let average = total / machines.count
12             var dis = 0
13             var result = 0
14             
15             for machine in machines {
16                 let currentDis = machine - average
17                 dis += currentDis
18                 result = max(result, abs(dis))
19                 result = max(result, currentDis)
20             }
21             return result
22         }
23     }
24 }

 

posted @ 2019-02-18 19:10  为敢技术  阅读(366)  评论(0编辑  收藏  举报