554 Brick Wall
Last updated
Was this helpful?
Last updated
Was this helpful?
There is a brick wall in front of you. The wall is rectangular and has several rows of bricks. The bricks have the same height but different width. You want to draw a vertical line from thetopto thebottomand cross theleastbricks.
The brick wall is represented by a list of rows. Each row is a list of integers representing the width of each brick in this row from left to right.
If your line go through the edge of a brick, then the brick is not considered as crossed. You need to find out how to draw the line to cross the least bricks and return the number of crossed bricks.
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.
Example:
Note:
The width sum of bricks in different rows are the same and won't exceed INT_MAX.
The number of bricks in each row is in range [1,10,000]. The height of wall is in range [1,10,000]. Total number of bricks of the wall won't exceed 20,000.
这题一看就是line sweep,一开始把点拆开成start和end,排序然后开始数。然后发现这样做是不行的,因为这只能求最大值。这题求最小值,是不一样的line sweep。这题其实只要算end,每次用墙的总数减去现在end了多少,剩下的值就是现在跨了多少墙。每个location的数目用hashmap来存,最后一个end不用算,因为会是0。还有记得放0,0到map里,因为一开始有6堵墙。
看了答案才发现,我去,其实可以求最大值,return时返回wall.size() - max。心累。
看了tutorial还发现了一点,如果把min的初始值设成wallsize的话,可以省去hm.put(0,0)...囧