题解 | #二进制数组分组#

二进制数组分组

https://www.nowcoder.com/practice/caea91f4980b4dd98ef6853dcbfd0065

class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param data int整型vector 
     * @return int整型
     */
    int minSwaps(vector<int>& data) {
        // write code here
        int cnt = 0;
        int n = data.size();
        //求出1的个数和cnt
        for(auto d : data){
            cnt += d;
        }
        //滑动窗口找出长度为cnt的窗口中0的最少个数和,
        //初始化ans,t为当前窗口1的个数
        int ans = cnt, t = 0;
        for(int i = 0; i < n ;i++){
            t += data[i];
            if(i >= cnt){
                t -= data[i - cnt];
            }
            ans = min(ans, cnt - t);
        }
        return ans;
    }
};
import java.util.*;


public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param data int整型一维数组 
     * @return int整型
     */
    public int minSwaps (int[] data) {
        // write code here
        int cnt = 0;
        int n = data.length;
        //求出1的个数和cnt
        for(int d : data){
            cnt += d;
        }
        //滑动窗口找出长度为cnt的窗口中0的最少个数和,
        //初始化ans,t为当前窗口1的个数
        int ans = cnt, t = 0;
        for(int i = 0; i < n ;i++){
            t += data[i];
            if(i >= cnt){
                t -= data[i - cnt];
            }
            ans = Math.min(ans, cnt - t);
        }
        return ans;
    }
}

全部评论

相关推荐

2024-11-22 17:03
广西师范大学 C++
佛系牛牛:多写一点,不要太多空白
点赞 评论 收藏
分享
2024-12-09 12:21
门头沟学院 C++
l11hy:今早刚开,已满足
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务