Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Max Consecutive Ones III #84

Closed
Tracked by #101
fkdl0048 opened this issue Oct 13, 2024 · 0 comments
Closed
Tracked by #101

Max Consecutive Ones III #84

fkdl0048 opened this issue Oct 13, 2024 · 0 comments
Assignees
Labels
Milestone

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Oct 13, 2024

class Solution {
public:
    int longestOnes(vector<int>& nums, int k) {
        int left = 0;
        int max_len = 0;
        int zero_count = 0;

        for (int right = 0; right < nums.size(); right++) {
            
            if (nums[right] == 0) {
                zero_count++;
            }

            while (zero_count > k) {
                if (nums[left] == 0) {
                    zero_count--;
                }

                left++;
            }

            max_len = max(max_len, right - left + 1);
        }

        return max_len;
    }
};
  • 슬라이딩 윈도우 기법으로 풀이
  • 왼쪽과 오른쪽 포인터의 움직임에서 다른 점은 2중 반복으로 0의 개수를 체크하는 부분
@fkdl0048 fkdl0048 mentioned this issue Oct 13, 2024
7 tasks
@fkdl0048 fkdl0048 self-assigned this Oct 13, 2024
@fkdl0048 fkdl0048 added this to Todo Oct 13, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Oct 13, 2024
@fkdl0048 fkdl0048 added this to the LeetCode milestone Oct 13, 2024
@github-project-automation github-project-automation bot moved this from Todo to Done in Todo Oct 14, 2024
@fkdl0048 fkdl0048 mentioned this issue Oct 15, 2024
75 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Done
Development

No branches or pull requests

1 participant