Zero Matrix - Amazon Top Interview Questions


Problem Statement :


Given a two-dimensional matrix of integers, for each zero in the original matrix, replace all values in its row and column with zero, and return the resulting matrix.

Constraints

n * m ≤ 100,000 where n and m are the number of rows and columns in matrix

Example 1

Input

matrix = [
    [5, 0, 0, 5, 8],
    [9, 8, 10, 3, 9],
    [0, 7, 2, 3, 1],
    [8, 0, 6, 7, 2],
    [4, 1, 8, 5, 10]
]

Output

[
    [0, 0, 0, 0, 0],
    [0, 0, 0, 3, 9],
    [0, 0, 0, 0, 0],
    [0, 0, 0, 0, 0],
    [0, 0, 0, 5, 10]
]

Explanation

These rows contain a 0: [0, 2, 3] and the returned matrix contains 0 in those rows.

These columns contain a 0: [0, 1, 2] and the returned matrix contains 0 in those columns.



Solution :



title-img




                        Solution in C++ :

vector<vector<int>> solve(vector<vector<int>>& matrix) {
    int R = matrix.size();
    int C = matrix[0].size();
    if (R == 0 || C == 0) return matrix;
    /// STEP 1
    bool hasFirstRowZero = false;
    bool hasFirstColZero = false;

    // Now start from matrix(0,0)
    // If first row has zero ?
    for (int i = 0; i < C; i++) {
        if (matrix[0][i] == 0) {
            hasFirstRowZero = true;
            break;
        }
    }

    // If first column has zero ?
    for (int i = 0; i < R; i++) {
        if (matrix[i][0] == 0) {
            hasFirstColZero = true;
            break;
        }
    }

    /// STEP 2(make use of hasFirstRowZero and hasFirstColZero)
    // start from matrix(1,1) and check if matrix(i,j) is zero ?
    for (int i = 1; i < R; i++) {
        for (int j = 1; j < C; j++) {
            if (matrix[i][j] == 0) {
                matrix[i][0] = 0;  // leftmost element set 0
                matrix[0][j] = 0;  // topmost element set 0
            }
        }
    }

    /// STEP 3
    // start from matrix(1,1) and check topmost and leftmost element zero ?
    for (int i = 1; i < R; i++) {
        for (int j = 1; j < C; j++) {
            if (matrix[i][0] == 0 || matrix[0][j] == 0) {
                matrix[i][j] = 0;
            }
        }
    }

    /// STEP 4
    // set zeroes for first row
    if (hasFirstRowZero) {
        for (int i = 0; i < C; i++) {
            matrix[0][i] = 0;
        }
    }

    // set zeroes for first column
    if (hasFirstColZero) {
        for (int i = 0; i < R; i++) {
            matrix[i][0] = 0;
        }
    }
    return matrix;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int[][] solve(int[][] matrix) {
        boolean[] rows = new boolean[matrix.length];
        boolean[] cols = new boolean[matrix[0].length];

        for (int i = 0; i < rows.length; i++)
            for (int j = 0; j < cols.length; j++)
                if (matrix[i][j] == 0) {
                    rows[i] = true;
                    cols[j] = true;
                }

        // Update matrix
        for (int i = 0; i < rows.length; i++)
            for (int j = 0; j < cols.length; j++)
                if (rows[i] || cols[j])
                    matrix[i][j] = 0;
        return matrix;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, matrix):
        first_row_zero = 0 in matrix[0]
        first_column_zero = 0 in [matrix[i][0] for i in range(len(matrix))]
        m = len(matrix)
        n = len(matrix[0])
        for i in range(1, m):
            for j in range(1, n):
                if matrix[i][j] == 0:
                    matrix[i][0] = 0
                    matrix[0][j] = 0

        for i in range(1, m):
            if matrix[i][0] == 0:
                for j in range(1, n):
                    matrix[i][j] = 0

        for j in range(1, n):
            if matrix[0][j] == 0:
                for i in range(1, m):
                    matrix[i][j] = 0

        if first_row_zero:
            matrix[0] = [0] * n

        if first_column_zero:
            for i in range(m):
                matrix[i][0] = 0

        return matrix
                    


View More Similar Problems

Queries with Fixed Length

Consider an -integer sequence, . We perform a query on by using an integer, , to calculate the result of the following expression: In other words, if we let , then you need to calculate . Given and queries, return a list of answers to each query. Example The first query uses all of the subarrays of length : . The maxima of the subarrays are . The minimum of these is . The secon

View Solution →

QHEAP1

This question is designed to help you get a better understanding of basic heap operations. You will be given queries of types: " 1 v " - Add an element to the heap. " 2 v " - Delete the element from the heap. "3" - Print the minimum of all the elements in the heap. NOTE: It is guaranteed that the element to be deleted will be there in the heap. Also, at any instant, only distinct element

View Solution →

Jesse and Cookies

Jesse loves cookies. He wants the sweetness of all his cookies to be greater than value K. To do this, Jesse repeatedly mixes two cookies with the least sweetness. He creates a special combined cookie with: sweetness Least sweet cookie 2nd least sweet cookie). He repeats this procedure until all the cookies in his collection have a sweetness > = K. You are given Jesse's cookies. Print t

View Solution →

Find the Running Median

The median of a set of integers is the midpoint value of the data set for which an equal number of integers are less than and greater than the value. To find the median, you must first sort your set of integers in non-decreasing order, then: If your set contains an odd number of elements, the median is the middle element of the sorted sample. In the sorted set { 1, 2, 3 } , 2 is the median.

View Solution →

Minimum Average Waiting Time

Tieu owns a pizza restaurant and he manages it in his own way. While in a normal restaurant, a customer is served by following the first-come, first-served rule, Tieu simply minimizes the average waiting time of his customers. So he gets to decide who is served first, regardless of how sooner or later a person comes. Different kinds of pizzas take different amounts of time to cook. Also, once h

View Solution →

Merging Communities

People connect with each other in a social network. A connection between Person I and Person J is represented as . When two persons belonging to different communities connect, the net effect is the merger of both communities which I and J belongs to. At the beginning, there are N people representing N communities. Suppose person 1 and 2 connected and later 2 and 3 connected, then ,1 , 2 and 3 w

View Solution →