[Locked] Shortest Distance from All Buildings
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的更多相关文章
- 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的值. 最 ...
- [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 ...
- 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 ...
- [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 ...
- LeetCode Shortest Distance from All Buildings
原题链接在这里:https://leetcode.com/problems/shortest-distance-from-all-buildings/ 题目: You want to build a ...
- 317. Shortest Distance from All Buildings
题目: Given a string array words, find the maximum value of length(word[i]) * length(word[j]) where th ...
- [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 ...
- [LeetCode] Shortest Distance from All Buildings Solution
之前听朋友说LeetCode出了一道新题,但是一直在TLE,我就找时间做了一下.这题是一个比较典型的BFS的题目,自己匆忙写了一个答案,没有考虑优化的问题,应该是有更好的解法的. 原题如下: You ...
- LeetCode 317. Shortest Distance from All Buildings
原题链接在这里:https://leetcode.com/problems/shortest-distance-from-all-buildings/ 题目: You want to build a ...
随机推荐
- ZBar Installer
ZBar Install.For windows:http://sourceforge.net/projects/zbar/files/zbar/0.10/zbar-0.10-setup.exe/do ...
- 用PHP实现一个高效安全的ftp服务器(二)
接前文. 1.实现用户类CUser. 用户的存储采用文本形式,将用户数组进行json编码. 用户文件格式: * array( * 'user1' => array( * 'pass'=>' ...
- C# Base64编码/解码
一.编码规则 Base64编码的思想是是采用64个基本的ASCII码字符对数据进行重新编码.它将需要编码的数据拆分成字节数组.以3个字节为一组.按顺序排列24 位数据,再把这24位数据分成4 ...
- Java操作hbase总结
用过以后,总得写个总结,不然,就忘喽. 一.寻找操作的jar包. java操作hbase,首先要考虑到使用hbase的jar包. 因为咱装的是CDH5,比较方便,使用SecureCRT工具,远程连接到 ...
- 性能测试实践-linux
需求:线上系统性能优化,查找服务器和线上系统瓶颈 根据线上经验数据及期望值定量 数据 up down 线上数据 50 500 测试数据 100 500~2000+ 测试数据 200 500~200 ...
- 关于jQuery的cookies插件2.2.0版设置过期时间的说明
欢迎转载,转载请注明作者RunningOn jQuery应该是各位用JavaScript做web开发的常用工具了,它有些插件能非常方便地操作cookie. 不过非常让人郁闷的是,网上几乎所有人对于这些 ...
- Android SlidingMenu开源库及其使用
极客学院教程: http://www.jikexueyuan.com/course/61_5.html?ss=1 1. SlidingMenu开源库的配置 2. SlidingMenu 的使用 --- ...
- python django 自定义 装饰器
# -*-coding:utf-8-*- __author__ = "GILANG (pleasurelong@foxmail.com)" """ d ...
- Java中swap解惑
直接上代码…… public class Swap { public static void main(String[] args) { int a[] = new int[]{1,2}; Syste ...
- Unity3d场景合并
Unity3d场景合并 一.Unity3d场景合并,有一次的情况是这样的,就是我们是每个人都在开发,每个人有不同的场景,那么合并的时候,有些会出问题,那么我有一个好的方案,就是首先弄一个公共的资源库, ...