Binary Matrix Leftmost One - Facebook Top Interview Questions


Problem Statement :


You are given a two-dimensional list of integers matrix which contains 1s and 0s. 

Given that each row is sorted in ascending order with 0s coming before 1s, return the leftmost column index with the value of 1. 

If there's no row with a 1, return -1.

Can you solve it faster than \mathcal{O}(nm)O(nm).

Constraints

n, m ≤ 250 where n and m are the number of rows and columns in matrix

Example 1



Input

matrix = [

    [0, 0, 0, 0],

    [0, 0, 1, 1],

    [0, 0, 0, 1],

    [0, 1, 1, 1]

]

Output

1

Explanation

The last row contains the leftmost column with a one at index 1.



Solution :



title-img




                        Solution in C++ :

int solve(vector<vector<int>>& mat) {
    int res = INT_MAX;
    for (int i = 0; i < mat.size(); i++) {
        int pos = -1;
        int l = 0, r = mat[0].size() - 1;
        while (l <= r) {
            int mid = l + (r - l) / 2;
            if (mat[i][mid] == 1) {
                pos = mid;
                r = mid - 1;
            } else {
                l = mid + 1;
            }
        }
        if (pos != -1) res = min(res, pos);
    }

    return res == INT_MAX ? -1 : res;
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[][] matrix) {
        if (matrix.length == 0 || matrix[0].length == 0) {
            return -1;
        }

        int n = matrix.length;
        int m = matrix[0].length;

        int row = n - 1;
        int col = m - 1;

        int ans = m;

        while (col >= 0 && row >= 0) {
            if (matrix[row][col] == 1) {
                ans = col;
                col--;
            } else {
                row--;
            }
        }

        return ans == m ? -1 : ans;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, matrix):
        if not matrix:
            return -1
        ans = float("inf")
        COLS = len(matrix[0])
        for row in matrix:
            l, r = 0, COLS - 1
            while l < r:
                mid = l + (r - l) // 2
                if row[mid] == 1:
                    r = mid
                else:
                    l = mid + 1
            if row[l] == 1:
                ans = min(ans, l)
        return ans if ans != float("inf") else -1
                    


View More Similar Problems

Super Maximum Cost Queries

Victoria has a tree, T , consisting of N nodes numbered from 1 to N. Each edge from node Ui to Vi in tree T has an integer weight, Wi. Let's define the cost, C, of a path from some node X to some other node Y as the maximum weight ( W ) for any edge in the unique path from node X to Y node . Victoria wants your help processing Q queries on tree T, where each query contains 2 integers, L and

View Solution →

Contacts

We're going to make our own Contacts application! The application must perform two types of operations: 1 . add name, where name is a string denoting a contact name. This must store name as a new contact in the application. find partial, where partial is a string denoting a partial name to search the application for. It must count the number of contacts starting partial with and print the co

View Solution →

No Prefix Set

There is a given list of strings where each string contains only lowercase letters from a - j, inclusive. The set of strings is said to be a GOOD SET if no string is a prefix of another string. In this case, print GOOD SET. Otherwise, print BAD SET on the first line followed by the string being checked. Note If two strings are identical, they are prefixes of each other. Function Descriptio

View Solution →

Cube Summation

You are given a 3-D Matrix in which each block contains 0 initially. The first block is defined by the coordinate (1,1,1) and the last block is defined by the coordinate (N,N,N). There are two types of queries. UPDATE x y z W updates the value of block (x,y,z) to W. QUERY x1 y1 z1 x2 y2 z2 calculates the sum of the value of blocks whose x coordinate is between x1 and x2 (inclusive), y coor

View Solution →

Direct Connections

Enter-View ( EV ) is a linear, street-like country. By linear, we mean all the cities of the country are placed on a single straight line - the x -axis. Thus every city's position can be defined by a single coordinate, xi, the distance from the left borderline of the country. You can treat all cities as single points. Unfortunately, the dictator of telecommunication of EV (Mr. S. Treat Jr.) do

View Solution →

Subsequence Weighting

A subsequence of a sequence is a sequence which is obtained by deleting zero or more elements from the sequence. You are given a sequence A in which every element is a pair of integers i.e A = [(a1, w1), (a2, w2),..., (aN, wN)]. For a subseqence B = [(b1, v1), (b2, v2), ...., (bM, vM)] of the given sequence : We call it increasing if for every i (1 <= i < M ) , bi < bi+1. Weight(B) =

View Solution →