


If you are given an array {1, 1, 0, 0, 1} then you will have to return the count of maximum one’s you can obtain by flipping anyone chosen sub-array at most once, so here you will clearly choose sub-array from the index 2 to 3 and then flip it's bits. So, the final array comes out to be {1, 1, 1, 1, 1} which contains five ones and so you will return 5.
The first line of input consists of a single integer T denoting the total number of the test case.
The first line of each test case contains an integer N, which represents the array's size.
The second line of each test case contains N space-separated integers representing the array elements accordingly.
For each test case, return a single integer representing the maximum number of 1's you can have in the array after at most one flip operation.
You don’t have to print anything; it has already been taken care of. Just implement the given function.
1 <= T = 100
1 <= N <= 10^4
0 <= ARR[i] <= 1
Time Limit: 1 sec
The idea is to check for all the possible subarrays and inside each subarray, check for the highest value of the difference between the count for zeroes and ones for this. Let’s consider this highest difference to be MAX and initialize it to zero so formally MAX = count of zeroes in that subarray - count of ones in the same subarray.
This problem can be interpreted as a version of Kadane's algorithm.
Actually, we want to consider a subarray that maximizes the difference between the count of ones and zeroes. If we change 1s to -1 and change 0 to 1, then the sum of values will give us the maximum difference between the counts(MAX). So, we have to find a subarray with the maximum sum, which can be done by Kadane’s Algorithm. Finally, we return the MAX plus count of ones in the original array.