1428. Leftmost Column with at Least a One
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.
Constraints
rows == mat.lengthcols == mat[i].length1 <= rows, cols <= 100mat[i][j]is either0or1.mat[i]is sorted in non-decreasing order.
Approach
Links
Binarysearch
GeeksforGeeks
ProgramCreek
YouTube
Examples
Input: mat = [[0, 0], [1, 1]]

Output: 0
Input: mat = [[0, 0], [0, 1]]

Output: 1
Input: mat = [[0, 0], [0, 0]]

Output: -1
Input: mat = [[0, 0, 0, 1], [0, 0, 1, 1], [0, 1, 1, 1]]

Output: 1
Solutions
interface BinaryMatrix {
public int get(int row, int col) {}
public List<Integer> dimensions {}
};/**
* Time complexity :
* Space complexity :
*/
class Solution {
public int leftMostColumnWithOne(BinaryMatrix binaryMatrix) {
if(binaryMatrix == null) {
return 0;
}
List<Integer> dimension = binaryMatrix.dimensions();
int rows = dimension.get(0), cols = dimension.get(1);
int minIndex = Integer.MAX_VALUE;
int low = 0, high = cols-1;
while(low <= high) {
int col = low + (high - low)/2;
boolean foundOne = false;
for(int row = 0; row < rows; row++) {
if(binaryMatrix.get(row, col) == 1) {
foundOne = true;
minIndex = Math.min(minIndex, col);
break;
}
}
if(foundOne) {
high = col - 1;
} else {
low = col + 1;
}
}
return minIndex == Integer.MAX_VALUE? -1: minIndex;
}
}Follow up
Last updated
Was this helpful?