Brick Wall
Problem Statement:-
There is a rectangular brick wall in front of you with n rows of bricks. The ith row has some number of bricks each of the same height (i.e., one unit) but they can be of different widths. The total width of each row is the same.
Draw a vertical line from the top to the bottom and cross the least bricks. If your line goes through the edge of a brick, then the brick is not considered as crossed. You cannot draw a line just along one of the two vertical edges of the wall, in which case the line will obviously cross no bricks.
Given the 2D array wall that contains the information about the wall, return the minimum number of crossed bricks after drawing such a vertical line.
Input: wall = [[1,2,2,1],[3,1,2],[1,3,2],[2,4],[3,1,2],[1,3,1,1]]
Output: 2
Approach
We are going to keep track of the frequency of each edge size. We are concerned with the edge which occurs in most of the rows, as that would pass through minimum bricks. So we keep track of the frequency of all edges in a row and keep updating the maximum frequency. At last, we have to find out the number of crossed bricks which will be equal to the total no. of rows - maximum frequency.
Solution:-
class Solution {
public:
int leastBricks(vector<vector<int>>& wall) {
unordered_map<int, int> frequency;
int max_frequency=0;
for(int i=0;i<wall.size();i++){
int edge_size=0;
for(int j=0;j<wall[i].size()-1;j++){
edge_size+=wall[i][j];
frequency[edge_size]++;
max_frequency=max(max_frequency,frequency[edge_size]);
}
}
return wall.size()-max_frequency;
}
};
Time Complexity: O(n*m)
Space Complexity: O(m)