Leftmost Column with at Least a One
(This problem is an interactive problem.)
A binary matrix means that all elements are 0
or 1
. For each individual row of the matrix, this row is sorted in non-decreasing order.
Given a row-sorted binary matrix binaryMatrix, return leftmost column index(0-indexed) with at least a 1
in it. If such index doesn't 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 a list of 2 elements[rows, cols]
, which means the matrix isrows * 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 you're given the binary matrix mat
as input in the following four examples. You will not have access the binary matrix directly.
Example 1:
Input: mat = [[0,0],[1,1]] Output: 0
Example 2:
Input: mat = [[0,0],[0,1]] Output: 1
Example 3:
Input: mat = [[0,0],[0,0]] Output: -1
Example 4:
Input: mat = [[0,0,0,1],[0,0,1,1],[0,1,1,1]] Output: 1
思路:这题跟 search 2d matrix 一样。遇见0,没必要往左走了,因为左边全是0,遇见1了没必要往下走,因为我们是找最左边的点;
/**
* // This is the BinaryMatrix's API interface.
* // You should not implement it, or speculate about its implementation
* interface BinaryMatrix {
* public int get(int row, int col) {}
* public List<Integer> dimensions {}
* };
*/
class Solution {
public int leftMostColumnWithOne(BinaryMatrix binaryMatrix) {
List<Integer> dimension = binaryMatrix.dimensions();
int n = dimension.get(0);
int m = dimension.get(1);
int leftmost = -1;
int i = 0; int j = m - 1;
while(i < n && j >= 0) {
if(binaryMatrix.get(i, j) == 0) {
i++;
} else {
// binaryMatrix.get(i, j) == 1
leftmost = j;
j--;
}
}
return leftmost;
}
}
上一篇: C语言——PTA 找出最小值
推荐阅读
-
Tomcat9+JDK 13报错Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of these environment variable is needed to run thi
-
A table must have at least 1 column
-
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of these enviro
-
SAP CRM错误消息 Specify at least one number for the business partner CRMSAP云平台SAPSAP Cloud PlatformABAP
-
Leftmost Column with at Least a One
-
SAP CRM错误消息 Specify at least one number for the business partner CRMSAP云平台SAPSAP Cloud PlatformABAP
-
phpmailer错误提示You must provide at least one recipient email address
-
CSS+DIV布局,一个列宽影响另一个列宽,使总宽度自适应(CSS+DIV Layout, one column's width depend on the other's)_html/css_WEB-ITnose
-
Minimum Cost to Make at Least One Valid Path in a Grid
-
leetcode 1368. Minimum Cost to Make at Least One Valid Path in a Grid