Find Index of 0 to be replaced with 1 to get longest continuous sequence of 1s in a binary array
Last Updated :
24 Jun, 2022
Given an array of 0s and 1s, find the position of 0 to be replaced with 1 to get longest continuous sequence of 1s. Expected time complexity is O(n) and auxiliary space is O(1).
Example:
Input:
arr[] = {1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1}
Output:
Index 9
Assuming array index starts from 0, replacing 0 with 1 at index 9 causes
the maximum continuous sequence of 1s.
Input:
arr[] = {1, 1, 1, 1, 0}
Output:
Index 4
We strongly recommend to minimize the browser and try this yourself first.
A Simple Solution is to traverse the array, for every 0, count the number of 1s on both sides of it. Keep track of maximum count for any 0. Finally return index of the 0 with maximum number of 1s around it. The time complexity of this solution is O(n2).
Using an Efficient Solution, the problem can solved in O(n) time. The idea is to keep track of three indexes, current index (curr), previous zero index (prev_zero) and previous to previous zero index (prev_prev_zero). Traverse the array, if current element is 0, calculate the difference between curr and prev_prev_zero (This difference minus one is the number of 1s around the prev_zero). If the difference between curr and prev_prev_zero is more than maximum so far, then update the maximum. Finally return index of the prev_zero with maximum difference.
Following are the implementations of the above algorithm.
C++
// C++ program to find Index of 0 to be replaced with 1 to get
// longest continuous sequence of 1s in a binary array
#include<iostream>
using namespace std;
// Returns index of 0 to be replaced with 1 to get longest
// continuous sequence of 1s. If there is no 0 in array, then
// it returns -1.
int maxOnesIndex(bool arr[], int n)
{
int max_count = 0; // for maximum number of 1 around a zero
int max_index; // for storing result
int prev_zero = -1; // index of previous zero
int prev_prev_zero = -1; // index of previous to previous zero
// Traverse the input array
for (int curr=0; curr<n; ++curr)
{
// If current element is 0, then calculate the difference
// between curr and prev_prev_zero
if (arr[curr] == 0)
{
// Update result if count of 1s around prev_zero is more
if (curr - prev_prev_zero > max_count)
{
max_count = curr - prev_prev_zero;
max_index = prev_zero;
}
// Update for next iteration
prev_prev_zero = prev_zero;
prev_zero = curr;
}
}
// Check for the last encountered zero
if (n-prev_prev_zero > max_count)
max_index = prev_zero;
return max_index;
}
// Driver program
int main()
{
bool arr[] = {1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1};
int n = sizeof(arr)/sizeof(arr[0]);
cout << "Index of 0 to be replaced is "
<< maxOnesIndex(arr, n);
return 0;
}
Java
// Java program to find Index of 0 to be replaced with 1 to get
// longest continuous sequence of 1s in a binary array
import java.io.*;
class Binary
{
// Returns index of 0 to be replaced with 1 to get longest
// continuous sequence of 1s. If there is no 0 in array, then
// it returns -1.
static int maxOnesIndex(int arr[], int n)
{
int max_count = 0; // for maximum number of 1 around a zero
int max_index=0; // for storing result
int prev_zero = -1; // index of previous zero
int prev_prev_zero = -1; // index of previous to previous zero
// Traverse the input array
for (int curr=0; curr<n; ++curr)
{
// If current element is 0, then calculate the difference
// between curr and prev_prev_zero
if (arr[curr] == 0)
{
// Update result if count of 1s around prev_zero is more
if (curr - prev_prev_zero > max_count)
{
max_count = curr - prev_prev_zero;
max_index = prev_zero;
}
// Update for next iteration
prev_prev_zero = prev_zero;
prev_zero = curr;
}
}
// Check for the last encountered zero
if (n-prev_prev_zero > max_count)
max_index = prev_zero;
return max_index;
}
// Driver program to test above function
public static void main(String[] args)
{
int arr[] = {1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1};
int n = arr.length;
System.out.println("Index of 0 to be replaced is "+
maxOnesIndex(arr, n));
}
}
/* This code is contributed by Devesh Agrawal */
Python3
# Python program to find Index
# of 0 to be replaced with 1 to get
# longest continuous sequence
# of 1s in a binary array
# Returns index of 0 to be
# replaced with 1 to get longest
# continuous sequence of 1s.
# If there is no 0 in array, then
# it returns -1.
def maxOnesIndex(arr,n):
# for maximum number of 1 around a zero
max_count = 0
# for storing result
max_index =0
# index of previous zero
prev_zero = -1
# index of previous to previous zero
prev_prev_zero = -1
# Traverse the input array
for curr in range(n):
# If current element is 0,
# then calculate the difference
# between curr and prev_prev_zero
if (arr[curr] == 0):
# Update result if count of
# 1s around prev_zero is more
if (curr - prev_prev_zero > max_count):
max_count = curr - prev_prev_zero
max_index = prev_zero
# Update for next iteration
prev_prev_zero = prev_zero
prev_zero = curr
# Check for the last encountered zero
if (n-prev_prev_zero > max_count):
max_index = prev_zero
return max_index
# Driver program
arr = [1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1]
n = len(arr)
print("Index of 0 to be replaced is ",
maxOnesIndex(arr, n))
# This code is contributed
# by Anant Agarwal.
C#
// C# program to find Index of 0 to be replaced
// with 1 to get longest continuous sequence of
// 1s in a binary array
using System;
class GFG {
// Returns index of 0 to be replaced with
// 1 to get longest continuous sequence of
// 1s. If there is no 0 in array, then it
// returns -1.
static int maxOnesIndex(int []arr, int n)
{
// for maximum number of 1 around a zero
int max_count = 0;
// for storing result
int max_index = 0;
// index of previous zero
int prev_zero = -1;
// index of previous to previous zero
int prev_prev_zero = -1;
// Traverse the input array
for (int curr = 0; curr < n; ++curr)
{
// If current element is 0, then
// calculate the difference
// between curr and prev_prev_zero
if (arr[curr] == 0)
{
// Update result if count of 1s
// around prev_zero is more
if (curr - prev_prev_zero > max_count)
{
max_count = curr - prev_prev_zero;
max_index = prev_zero;
}
// Update for next iteration
prev_prev_zero = prev_zero;
prev_zero = curr;
}
}
// Check for the last encountered zero
if (n-prev_prev_zero > max_count)
max_index = prev_zero;
return max_index;
}
// Driver program to test above function
public static void Main()
{
int []arr = {1, 1, 0, 0, 1, 0, 1, 1, 1,
0, 1, 1, 1};
int n = arr.Length;
Console.Write("Index of 0 to be replaced is "
+ maxOnesIndex(arr, n));
}
}
// This code is contributed by nitin mittal.
PHP
<?php
// PHP program to find Index of 0 to be
// replaced with 1 to get longest continuous
// sequence of 1s in a binary array
// Returns index of 0 to be replaced with
// 1 to get longest continuous sequence of 1s.
// If there is no 0 in array, then it returns -1.
function maxOnesIndex( $arr, $n)
{
$max_count = 0; // for maximum number of
// 1 around a zero
$max_index; // for storing result
$prev_zero = -1; // index of previous zero
$prev_prev_zero = -1; // index of previous to
// previous zero
// Traverse the input array
for ($curr = 0; $curr < $n; ++$curr)
{
// If current element is 0, then
// calculate the difference
// between curr and prev_prev_zero
if ($arr[$curr] == 0)
{
// Update result if count of 1s
// around prev_zero is more
if ($curr - $prev_prev_zero > $max_count)
{
$max_count = $curr - $prev_prev_zero;
$max_index = $prev_zero;
}
// Update for next iteration
$prev_prev_zero = $prev_zero;
$prev_zero = $curr;
}
}
// Check for the last encountered zero
if ($n - $prev_prev_zero > $max_count)
$max_index = $prev_zero;
return $max_index;
}
// Driver Code
$arr = array(1, 1, 0, 0, 1, 0, 1,
1, 1, 0, 1, 1, 1);
$n = sizeof($arr);
echo "Index of 0 to be replaced is ",
maxOnesIndex($arr, $n);
// This code is contributed by ajit
?>
JavaScript
<script>
// Javascript program to find Index of 0 to
// be replaced with 1 to get longest continuous
// sequence of 1s in a binary array
// Returns index of 0 to be replaced with
// 1 to get longest continuous sequence of
// 1s. If there is no 0 in array, then it
// returns -1.
function maxOnesIndex(arr, n)
{
// for maximum number of 1 around a zero
let max_count = 0;
// for storing result
let max_index = 0;
// index of previous zero
let prev_zero = -1;
// index of previous to previous zero
let prev_prev_zero = -1;
// Traverse the input array
for(let curr = 0; curr < n; ++curr)
{
// If current element is 0, then
// calculate the difference
// between curr and prev_prev_zero
if (arr[curr] == 0)
{
// Update result if count of 1s
// around prev_zero is more
if (curr - prev_prev_zero > max_count)
{
max_count = curr - prev_prev_zero;
max_index = prev_zero;
}
// Update for next iteration
prev_prev_zero = prev_zero;
prev_zero = curr;
}
}
// Check for the last encountered zero
if (n - prev_prev_zero > max_count)
max_index = prev_zero;
return max_index;
}
// Driver code
let arr = [ 1, 1, 0, 0, 1, 0, 1,
1, 1, 0, 1, 1, 1 ];
let n = arr.length;
document.write("Index of 0 to be replaced is " +
maxOnesIndex(arr, n));
// This code is contributed by divyesh072019
</script>
OutputIndex of 0 to be replaced is 9
Time Complexity: O(n)
Auxiliary Space: O(1)
Similar Reads
DSA Tutorial - Learn Data Structures and Algorithms DSA (Data Structures and Algorithms) is the study of organizing data efficiently using data structures like arrays, stacks, and trees, paired with step-by-step procedures (or algorithms) to solve problems effectively. Data structures manage how data is stored and accessed, while algorithms focus on
7 min read
Quick Sort QuickSort is a sorting algorithm based on the Divide and Conquer that picks an element as a pivot and partitions the given array around the picked pivot by placing the pivot in its correct position in the sorted array. It works on the principle of divide and conquer, breaking down the problem into s
12 min read
Merge Sort - Data Structure and Algorithms Tutorials Merge sort is a popular sorting algorithm known for its efficiency and stability. It follows the divide-and-conquer approach. It works by recursively dividing the input array into two halves, recursively sorting the two halves and finally merging them back together to obtain the sorted array. Merge
14 min read
Bubble Sort Algorithm Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in the wrong order. This algorithm is not suitable for large data sets as its average and worst-case time complexity are quite high.We sort the array using multiple passes. After the fir
8 min read
Data Structures Tutorial Data structures are the fundamental building blocks of computer programming. They define how data is organized, stored, and manipulated within a program. Understanding data structures is very important for developing efficient and effective algorithms. What is Data Structure?A data structure is a st
2 min read
Breadth First Search or BFS for a Graph Given a undirected graph represented by an adjacency list adj, where each adj[i] represents the list of vertices connected to vertex i. Perform a Breadth First Search (BFS) traversal starting from vertex 0, visiting vertices from left to right according to the adjacency list, and return a list conta
15+ min read
Binary Search Algorithm - Iterative and Recursive Implementation Binary Search Algorithm is a searching algorithm used in a sorted array by repeatedly dividing the search interval in half. The idea of binary search is to use the information that the array is sorted and reduce the time complexity to O(log N). Binary Search AlgorithmConditions to apply Binary Searc
15 min read
Insertion Sort Algorithm Insertion sort is a simple sorting algorithm that works by iteratively inserting each element of an unsorted list into its correct position in a sorted portion of the list. It is like sorting playing cards in your hands. You split the cards into two groups: the sorted cards and the unsorted cards. T
9 min read
Dijkstra's Algorithm to find Shortest Paths from a Source to all Given a weighted undirected graph represented as an edge list and a source vertex src, find the shortest path distances from the source vertex to all other vertices in the graph. The graph contains V vertices, numbered from 0 to V - 1.Note: The given graph does not contain any negative edge. Example
12 min read
Selection Sort Selection Sort is a comparison-based sorting algorithm. It sorts an array by repeatedly selecting the smallest (or largest) element from the unsorted portion and swapping it with the first unsorted element. This process continues until the entire array is sorted.First we find the smallest element an
8 min read