Largest subarray with equal number of 0s and 1s
You are given an array consisting of 0s and 1s. You need to find the length of the largest subarray with an equal number of 0s and 1s.
For example:
If the given array is: [0, 0, 1, 0, 1] The largest subarray would be: [0, 1, 0, 1] (last 4 elements) having length 4.
Input Format:
The first line of input contains a single integer T, representing the number of test cases or queries to be run.
Then the T test cases follow.
The first line of each test case contains a single integer N denoting the length of the array.
The second line of each test case contains N space-separated integers representing the array elements.
Output Format:
For each test case, return the length of the largest subarray with the equal number of 0s and 1s, in a new line.
Note:
You are not required to print the expected output, it has already been taken care of. Just implement the function.
Constraints:
1 ≤ T ≤ 10
1 ≤ N ≤ 10^5
0 ≤ Ai ≤ 1
Time Limit : 1 sec
CodingNinjas
author
2y
Approach : I changed array entry for 0 to -1.
Then I took Prefix sum of array and then the problem changed to finding two index in array such that arr[i]=arr[j] and abs(j-i) is maximum.
Time Complexity ...read more
CodingNinjas
author
2y
Brute Force
- We generate all the possible subarrays by using two nested loops.
- We can run two nested loops, the outer loop picks the starting element and the inner loop picks the ending element.
- The third...read more
CodingNinjas
author
2y
Optimised Brute Force
- We generate all the possible subarrays by using nested loops.
- We can run two nested loops, the outer loop picks the starting element and the inner loop considers all elements on th...read more
CodingNinjas
author
2y
Optimal Solution
- For simplicity, consider 0 as -1 and 1 as 1 since the sum for equal numbers of 0s and 1s would be 0.
- Store the cumulative sums in a hashmap. There can be two cases:
- When cumulative sum i...read more
Add answer anonymously...
Top Expedia Group Software Developer interview questions & answers
Popular interview questions of Software Developer
>
Expedia Group Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+
Reviews
4 L+
Interviews
4 Cr+
Salaries
1 Cr+
Users/Month
Contribute to help millions
Get AmbitionBox app