LeetCode 30 days challenge: Leftmost Column with at Least a One

題目名稱 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(x, y) returns the element of the matrix at index (x, y) (0-indexed).
BinaryMatrix.dimensions() returns a list of 2 elements [m, n], which means the matrix is m * n.
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

Constraints:

m == mat.length
n == mat[i].length
1 <= m, n <= 100
mat[i][j] is either 0 or 1.
mat[i] is sorted in a non-decreasing way.

C++ solution
class Solution {
public:
    int leftMostColumnWithOne(BinaryMatrix &binaryMatrix) {
        
        int m = binaryMatrix.dimensions()[0], n = binaryMatrix.dimensions()[1];
        
        int lefmost = INT_MAX;
        
        for(int i = 0; i < m; i++){
            
            int j = binarysearch(binaryMatrix, 1, i, 0, n - 1);
            if(j != -1 && j < lefmost)
                lefmost = j;
            
        }
        return (lefmost == INT_MAX) ? -1 : lefmost;
    }
    
    
    int binarysearch(BinaryMatrix& bm, int value, int rowth, int b, int e){
        
        int res;
        if(b > e)
            return -1;
        else{    
            int med = (b + e) / 2;      
            if(bm.get(rowth, med) == 0)  //如果是0,就在右邊
                res = binarysearch(bm, value, rowth, med + 1, e);
            else{ //如果是1,有可能不是最左邊
                int tmp =  binarysearch(bm, value, rowth, b, med - 1);    
                res = (tmp == -1) ? med : tmp;    
            }
        }      
        return res;
        
    }
};
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章