Minimum Swaps to Group All 1‘s Together

1151. Minimum Swaps to Group All 1‘s Together

Given a binary array data, return the minimum number of swaps required to group all 1’s present in the array together in any place in the array.

Example 1:

Input: data = [1,0,1,0,1]
Output: 1
Explanation: There are 3 ways to group all 1's together:
[1,1,1,0,0] using 1 swap.
[0,1,1,1,0] using 2 swaps.
[0,0,1,1,1] using 1 swap.
The minimum is 1.

Example 2:

Input: data = [0,0,0,1,0]
Output: 0
Explanation: Since there is only one 1 in the array, no swaps are needed.

Example 3:

Input: data = [1,0,1,0,1,0,0,1,1,0,1]
Output: 3
Explanation: One possible solution that uses 3 swaps is [0,0,0,0,0,1,1,1,1,1,1].

Constraints:

  • 1 <= data.length <= 105
  • data[i] is either 0 or 1.
class Solution:
    def minSwaps(self, data: List[int]) -> int:
        w=sum(data)
        n=len(data)
        tsum=sum(data[:w])
        ans=w-tsum
        for i in range(w,n):
            tsum=tsum+data[i]-data[i-w]
            ans=min(ans,w-tsum)
        return ans

这个题的意思是,最后我们会有一个window size是1的个数,然后需要每个每个window的位置

------------------------

2134. Minimum Swaps to Group All 1's Together II

# class Solution:
#     def minSwaps(self, nums: List[int]) -> int:

class Solution:
    def minSwaps(self, data: List[int]) -> int:
        w=sum(data)
        n=len(data)
        tsum=sum(data[:w])
        ans=w-tsum
        for i in range(w,n+w):
            tsum=tsum+data[i%n]-data[(i-w)%n]
            ans=min(ans,w-tsum)
        return ans

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值