1428. Leftmost Column with at Least a One
Problem description:
(This problem is an interactive problem.)
A row-sorted binary matrix means that all elements are 0
or 1
and each row of the matrix is sorted in non-decreasing order.
Given a row-sorted binary matrix binaryMatrix
, return the index (0-indexed) of the leftmost column with a 1 in it. If such an index does not exist, return -1
.
You can’t access the Binary Matrix directly. You may only access the matrix using a BinaryMatrix
interface:
BinaryMatrix.get(row, col)
returns the element of the matrix at index(row, col)
(0-indexed).BinaryMatrix.dimensions()
returns the dimensions of the matrix as a list of 2 elements[rows, cols]
, which means the matrix isrows x cols
.
Submissions making more than 1000
calls to BinaryMatrix.get
will be judged Wrong Answer. Also, any solutions that attempt to circumvent the judge will result in disqualification.
For custom testing purposes, the input will be the entire binary matrix mat
. You will not have access to the binary matrix directly.
Example 1:
1 | Input: mat = [[0,0],[1,1]] |
Example 2:
1 | Input: mat = [[0,0],[0,1]] |
Example 3:
1 | Input: mat = [[0,0],[0,0]] |
Example 4:
1 | Input: mat = [[0,0,0,1],[0,0,1,1],[0,1,1,1]] |
Constraints:
rows == mat.length
cols == mat[i].length
1 <= rows, cols <= 100
mat[i][j]
is either0
or1
.mat[i]
is sorted in non-decreasing order.
Solution:
Linear search
1 | # """ |
time complexity: $O(M+N)$
space complexity: $O(1)$
Solution: Binary search
Binary search:
Use binary search to find the mid column
Find if there’s 1 in the column by walking through rows.
1 | class Solution: |
time complexity: $O(MlogN)$
space complexity: $O(1)$
reference:
related problem: