博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode] Brick Wall
阅读量:4983 次
发布时间:2019-06-12

本文共 3574 字,大约阅读时间需要 11 分钟。

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 the top to the bottom and cross the least bricks.

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:

Input: [[1,2,2,1], [3,1,2], [1,3,2], [2,4], [3,1,2], [1,3,1,1]]Output: 2Explanation:

Note:

  1. The width sum of bricks in different rows are the same and won't exceed INT_MAX.
  2. 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.

 分析:这个题目比较有意思,给一个list,代表一堵堵墙,要求找从top到bottom的路径中,穿过墙数量最少的个数。
      第一想到的就是暴力搜索,从第一堵墙开始遍历,找每一个内部的连接点,然后往下取找要穿过几堵墙。这个方法要注意有一层只有一个墙的情况。分析了一下可能要O(n^4)复杂度啊,太高了。不过还是硬着头皮把代码写出来了,下面的思路再做优化。
1 class Solution { 2    public int leastBricks(List
> wall) { 3 int res = Integer.MAX_VALUE; 4 int n = wall.size(); 5 for (int times = 0; times < n; times++) { 6 int target = 0; 7 for (int i = 0; i < wall.get(times).size() - 1 ; i++) { 8 int count = 0; 9 target += wall.get(times).get(i);10 for (int j = 0; j < wall.size(); j++) {11 List
cur_wall = wall.get(j);12 int sum = 0;13 for (int t : cur_wall) {14 sum += t;15 if (sum == target) break;16 if (sum > target) {17 count++;18 break;19 }20 }21 }22 res = Math.min(res, count);23 }24 }25 return res == Integer.MAX_VALUE?wall.size():res;26 }27 }

      可以看到是四层循环,第一层循环是从第一堵墙到最后一堵墙,第二层循环是找每堵墙中间的空隙,第三层循环是重新遍历每层墙,第四层循环是计算每个墙到空隙是否单独成立。虽然AC了,但是时间爆炸啊,751ms了解一下。。。肯定不能这么搞,要进行优化。我们发现这个四成循环,其中最后面两层完全是重复前面两层。因此在这里还是有很大的优化空间的。


 

第二个思路:根据上面的优化思路,以题目给的范例作为例子,首先要记录下每一层空隙出现的位置,也就是[[1,3,5],[3,4],[1,4],[2],[3,4],[1,4,5]],这里数字代表那一层的空隙出现的位置,所以问题变成:对于这样一个数组,比如可以找1出现的次数m,然后用wall.size()-m,就是需要穿的墙的数量。然后再优化,显然需要用一个map来记录1出现的次数,这样就可以不用生成这个矩阵了,每次只要计算空隙,然后用map保存一下就好了,最后再统一找答案。所以优化思路就出来了,代码如下:
1 class Solution { 2    public int leastBricks(List
> wall) { 3 int res = wall.size(); 4 Map
map = new HashMap<>(); //保存每个空隙长度出现的次数 5 for ( List
list : wall ){ 6 int sum = 0; 7 for ( int i = 0 ; i < list.size() - 1 ; i ++ ){ 8 sum += list.get(i); 9 map.put(sum,map.getOrDefault(sum,0)+1);10 }11 }12 for ( int length : map.keySet() ){13 int temp = map.get(length);14 res = Math.min(wall.size()-temp,res);15 }16 return res;17 }18 }

      这里还做了个优化,原始的长度设为wall.size()就可以了,发现这个优化竟然提速了14ms,很神奇了。

      最后运行时间20ms,击败了97.01%的人。

      这个题目收获最大的就是如何进行优化,首先按照最普通的思路做出一个版本,然后看这个版本存在什么问题,然后再针对问题进行优化。

 
 
 
 
 
 
 
 
 
 
 
 
 
 

转载于:https://www.cnblogs.com/boris1221/p/9298833.html

你可能感兴趣的文章
应用程序不能全然结束的原因探秘及调试方法
查看>>
单元文件结构
查看>>
DOM、SAX、DOM4J、JDOM、StAX生成XML并返回XML字符串形式
查看>>
Qt学习(14)
查看>>
NOIP2011T2 统计单词数
查看>>
每日5min分享-接口测试框架
查看>>
超好用超短的小程序请求封装
查看>>
PHP 解析Url 面向对象
查看>>
nodejs express route 的用法
查看>>
Python多线程
查看>>
java IO整理-File
查看>>
粗谈Springboot框架,众所周知Springboot是有spring推出的微服务框架,什么是微服务框架呢!...
查看>>
离钱越近,才能赚钱越‘稳’
查看>>
mapping.mapper.xml文件中的标签详解
查看>>
软件工程——理论、方法与实践⑦
查看>>
【转】Android 组件系列-----Activity保存状态
查看>>
批处理实现多线程执行命令列表文件
查看>>
跟牛牛老师学习python自动化的第六天
查看>>
利用Flume将本地文件数据中收集到HDFS
查看>>
Vim 加 Gmail 变身 Vmail
查看>>