Maximum Consecutive Ones Problem Statement
Given a binary array 'ARR' of size 'N', your task is to determine the maximum length of a sequence consisting solely of 1’s that can be obtained by converting at most 'K' zeroes into ones.
Example:
Input:
For example, if there are 2 test cases:
TestCase 1: N = 6, ARR = [1, 1, 0, 0, 1, 1], K = 1
TestCase 2: N = 9, ARR = [1, 0, 1, 0, 1, 0, 1, 1, 1], K = 2
Output:
For TestCase 1, the output is 4.
For TestCase 2, the output is 7.
Explanation:
For TestCase 1: By flipping the third or fourth zero, we can have a maximum sequence of four 1's.
For TestCase 2: By flipping the second and fourth zeroes, we achieve a sequence of seven 1's.
Constraints:
1 ≤ T ≤ 10
1 ≤ N ≤ 5 * 104
0 ≤ Arr[i] ≤ 1
0 ≤ K ≤ N
Note:
You do not need to print anything, it has already been taken care of. Just implement the given function.

AnswerBot
4mo
The task is to find the maximum length of a sequence of 1's by converting at most K zeroes into ones in a binary array.
Iterate through the array and keep track of the current window of 1's and zeroes....read more
Help your peers!
Add answer anonymously...
Amazon Software Developer interview questions & answers
A Software Developer was asked 1mo agoQ. What is HTML?
A Software Developer was asked 1mo agoQ. What is MySQL?
A Software Developer was asked 2mo agoQ. Given two strings s and t, return true if they are equal when both are typed int...read more
Popular interview questions of Software Developer
A Software Developer was asked 1mo agoQ1. What is HTML?
A Software Developer was asked 1mo agoQ2. What is MySQL?
A Software Developer was asked 2mo agoQ3. What is the system design for the cart feature in an e-commerce website?
Top HR questions asked in Amazon Software Developer
A Software Developer was asked 1mo agoQ1. Tell me about a time you had to get to the root cause of a problem
A Software Developer was asked 5mo agoQ2. What are the short-term and long-term goals for the team or organization?
A Software Developer was asked 5mo agoQ3. Why do you want to work at Amazon?
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

