class Solution {
public:
/**
* @param matrix: A list of lists of integers
* @param target: An integer you want to search in matrix
* @return: An integer indicate the total occurrence of target in the given matrix
*/
int searchMatrix(vector<vector<int> > &matrix, int target) {
// write your code here
int row = matrix.size();
if (row == 0) {
return 0;
}
int col = matrix[0].size();
if (col == 0) {
return 0;
}
int count = 0;
int x = 0;
int y = col - 1;
while (x < row && y >= 0) {
if (matrix[x][y] < target) {
x++;
} else if (matrix[x][y] > target) {
y--;
} else {
count++;
x++;
y--;
}
}
return count;
}
};