0
点赞
收藏
分享

微信扫一扫

LeetCode 2134 Minimum Swaps to Group All 1‘s Together II

王栩的文字 2022-02-01 阅读 27
leetcode

swap is defined as taking two distinct positions in an array and swapping the values in them.

circular array is defined as an array where we consider the first element and the last element to be adjacent.

Given a binary circular array nums, return the minimum number of swaps required to group all 1's present in the array together at any location.

Example 1:

Input: nums = [0,1,0,1,1,0,0]
Output: 1
Explanation: Here are a few of the ways to group all the 1's together:
[0,0,1,1,1,0,0] using 1 swap.
[0,1,1,1,0,0,0] using 1 swap.
[1,1,0,0,0,0,1] using 2 swaps (using the circular property of the array).
There is no way to group all 1's together with 0 swaps.
Thus, the minimum number of swaps required is 1.

Example 2:

Input: nums = [0,1,1,1,0,0,1,1,0]
Output: 2
Explanation: Here are a few of the ways to group all the 1's together:
[1,1,1,0,0,0,0,1,1] using 2 swaps (using the circular property of the array).
[1,1,1,1,1,0,0,0,0] using 2 swaps.
There is no way to group all 1's together with 0 or 1 swaps.
Thus, the minimum number of swaps required is 2.

Example 3:

Input: nums = [1,1,0,0,1]
Output: 0
Explanation: All the 1's are already grouped together due to the circular property of the array.
Thus, the minimum number of swaps required is 0.

Constraints:

  • 1 <= nums.length <= 105
  • nums[i] is either 0 or 1.

题目链接:https://leetcode.com/problems/minimum-swaps-to-group-all-1s-together-ii/

题目大意:最少交换几次可以让所有'1'连在一起,数组是循环的(头尾相连)

题目分析:因为1的总数是固定的,枚举区间判断即可,0的位置必然要进行一次替换,循环的部分对下标取模即可

4ms,时间击败99.1%

class Solution {
    public int minSwaps(int[] nums) {
        int tot = 0, n = nums.length;
        for (int i = 0; i < n; i++) {
            tot += nums[i];
        }
        int cur = 0;
        for (int i = 0; i < tot; i++) {
            if (nums[i] == 0) {
                cur++;
            }
        }
        int ans = cur;
        for (int i = tot; i < n + tot; i++) {
            cur += nums[i - tot];
            cur -= nums[i % n];
            if (ans > cur) {
                ans = cur;
            }
        }
        return ans;
    }
}
举报

相关推荐

0 条评论