Shortest Distance from All Buildings

You want to build a house on an empty land which reaches all buildings in the shortest amount of distance. You can only move up, down, left and right. You are given a 2D grid of values 0, 1 or 2, where:

  • Each 0 marks an empty land which you can pass by freely.

  • Each 1 marks a building which you cannot pass through.

  • Each 2 marks an obstacle which you cannot pass through.

For example, given three buildings at (0,0), (0,4), (2,2), and an obstacle at (0,2):

1 - 0 - 2 - 0 - 1
| | | | |
0 - 0 - 0 - 0 - 0
| | | | |
0 - 0 - 1 - 0 - 0

The point (1,2) is an ideal empty land to build a house, as the total travel distance of 3+3+1=7 is minimal. So return 7.

Note:
There will be at least one building. If it is not possible to build such house according to the above rules, return -1.

分析:

  这题如果不考虑obstacle的存在的话,与另一道leetcode题目一样,分成x轴和y轴,根据值为1的点的坐标,直接算出最小距离;然而多了一个obstacle,这题又更像是gates and walls这题了,不同的是,对于每个为0的点,各个建筑物到它的最近的距离都要计算出来并累加,而不是算最近距离的最小值。K为building个数,M、N分别为长和宽,时间复杂度为O(KMN),空间复杂度为O(MN)

代码:

//计算每个岛到坐标为(i, j)的building的最短距离
void dfs(int i, int j, int cur, vector<vector<int> > &dist, vector<vector<int> > &grids) {
if(cur > dist[i][j])
return;
dist[i][j] = cur++;
if(grids[i][j + ] == )
dfs(i, j + , cur, dist, grids);
if(grids[i][j - ] == )
dfs(i, j - , cur, dist, grids);
if(grids[i + ][j] == )
dfs(i + , j, cur, dist, grids);
if(grids[i - ][j] == )
dfs(i - , j, cur, dist, grids);
return;
}
//迭代计算总距离矩阵,并重置距离矩阵
void postProcess(vector<vector<int> > &dist, vector<vector<int> > &totaldist, vector<vector<int> > &grids) {
for(int i = ; i < grids.size(); i++)
for(int j = ; j < grids[].size(); j++) {
if(grids[i][j] == )
totaldist[i][j] += dist[i][j];
dist[i][j] = INT_MAX;
}
return;
}
//主要功能函数
int shortestDist(vector<vector<int> > &grids) {
//设立岗哨
grids.insert(grids.begin(), vector<int> (grids[].size(), ));
grids.push_back(vector<int> (grids[].size(), ));
for(auto &v : grids) {
v.insert(v.begin(), );
v.push_back();
}
//声明并初始化距离矩阵
vector<vector<int> > dist(grids);
for(auto &v : dist)
for(int &i : v)
i = INT_MAX;
//声明并初始化总距离矩阵
vector<vector<int> > totaldist(grids.size(), vector<int> (grids[].size(), ));
//对每个building进行扩展,计算其到周边岛屿的最小距离
for(int i = ; i < grids.size(); i++) {
for(int j = ; j < grids[].size(); j++) {
if(grids[i][j] == ) {
dfs(i, j, , dist, grids);
postProcess(dist, totaldist, grids);
}
}
}
//在总距离矩阵中找到最小距离
int sd = INT_MAX;
for(int i = ; i < grids.size(); i++)
for(int j = ; j < grids[].size(); j++)
if(grids[i][j] == )
sd = min(sd, totaldist[i][j]);
//去除岗哨,还原输入矩阵
grids.pop_back();
grids.erase(grids.begin());
for(auto &v : grids) {
v.pop_back();
v.erase(v.begin());
}
return sd;
}

[Locked] Shortest Distance from All Buildings的更多相关文章

  1. leetcode 542. 01 Matrix 、663. Walls and Gates(lintcode) 、773. Sliding Puzzle 、803. Shortest Distance from All Buildings

    542. 01 Matrix https://www.cnblogs.com/grandyang/p/6602288.html 将所有的1置为INT_MAX,然后用所有的0去更新原本位置为1的值. 最 ...

  2. [LeetCode] 317. Shortest Distance from All Buildings 建筑物的最短距离

    You want to build a house on an empty land which reaches all buildings in the shortest amount of dis ...

  3. Shortest Distance from All Buildings

    You want to build a house on an empty land which reaches all buildings in the shortest amount of dis ...

  4. [LeetCode] Shortest Distance from All Buildings 建筑物的最短距离

    You want to build a house on an empty land which reaches all buildings in the shortest amount of dis ...

  5. LeetCode Shortest Distance from All Buildings

    原题链接在这里:https://leetcode.com/problems/shortest-distance-from-all-buildings/ 题目: You want to build a ...

  6. 317. Shortest Distance from All Buildings

    题目: Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where th ...

  7. [Swift]LeetCode317. 建筑物的最短距离 $ Shortest Distance from All Buildings

    You want to build a house on an empty land which reaches all buildings in the shortest amount of dis ...

  8. [LeetCode] Shortest Distance from All Buildings Solution

    之前听朋友说LeetCode出了一道新题,但是一直在TLE,我就找时间做了一下.这题是一个比较典型的BFS的题目,自己匆忙写了一个答案,没有考虑优化的问题,应该是有更好的解法的. 原题如下: You ...

  9. LeetCode 317. Shortest Distance from All Buildings

    原题链接在这里:https://leetcode.com/problems/shortest-distance-from-all-buildings/ 题目: You want to build a ...

随机推荐

  1. IOS学习--UILable使用手册(20150120)

    第一步:创建一个UILable对象 UILabel *lable = [[UILabel alloc]initWithFrame:CGRectMake(, , , )]; 第二步:设置对象的各种属性 ...

  2. iOS 去除导航栏下的黑线

    Swift: navigationController?.navigationBar.setBackgroundImage(UIImage(), forBarMetrics: .Default) na ...

  3. 06MySQL数据库入门

    1.数据库的概念 数据库是保存数据的仓库,可以方便的把数据放进去,并且把数据根据各种需求取出来. 数据库管理系统(Database Management System,DBMS)是对数据库进行管理(增 ...

  4. HTML页面中启用360浏览器极速模式

    今天做页面突然遇到浏览器一直在兼容模式下运行,体验不好,通过查询文档,在<head>中加入<meta name="renderer" content=" ...

  5. (JAVA)从零开始之--打印流PrintStream记录日志文件

    这里的记录日志是利用打印流来实现的. 文本信息中的内容为String类型.而像文件中写入数据,我们经常用到的还有文件输出流对象FileOutputStream. File file = new Fil ...

  6. [LeetCode OJ] Best Time to Buy and Sell Stock I

    Say you have an array for which the ith element is the price of a given stock on day i. If you were ...

  7. 每天一条linux命令——login

    login命令用于给出登录界面,可用于重新登录或者切换用户身份,也可通过它的功能随时更换登入身份.当/etc/nologin文件存在时,系统只root帐号登入系统,其他用户一律不准登入. 语法: lo ...

  8. SQL UNION 和 UNION ALL 操作符

    SQL UNION 和 UNION ALL 操作符 SQL Full Join SQL Select Into SQL UNION 操作符 UNION 操作符用于合并两个或多个 SELECT 语句的结 ...

  9. JS call和apply用法(转)

    每个JavaScript函数都会有很多附属的(attached)方法,包括toString().call()以及apply().听起来,你是否会 感到奇怪,一个函数可能会有属于它自己的方法,但是记住, ...

  10. PHPCMS v9 自定义表单添加验证码验证

    1. 在 \phpcms\templates\default\formguide\show.html 中添加验证码显示 <input type="text" id=" ...