In a row of seats1 represents a person sitting in that seat, and 0 represents that the seat is empty.

There is at least one empty seat, and at least one person sitting.

Alex wants to sit in the seat such that the distance between him and the closest person to him is maximized.

Return that maximum distance to closest person.

Example 1:

Input: [1,0,0,0,1,0,1]
Output: 2
Explanation:
If Alex sits in the second open seat (seats[2]), then the closest person has distance 2.
If Alex sits in any other open seat, the closest person has distance 1.
Thus, the maximum distance to the closest person is 2.

Example 2:

Input: [1,0,0,0]
Output: 3
Explanation:
If Alex sits in the last seat, the closest person is 3 seats away.
This is the maximum distance possible, so the answer is 3.

Note:

  1. 1 <= seats.length <= 20000
  2. seats contains only 0s or 1s, at least one 0, and at least one 1.

有一排座位,1代表座位有人,0代表座位空着。最少有1个人和1个空座位。Alex 想坐到一个座位上,使得离他最近的人的距离最大化,返回这个最大距离。

解法:双指针,左指针开始是0, 右指针是循环的index,右指针遇到1就计算与左指针的距离,计算完以后左指针变成现在的index。如果alex坐到两个1中间,则离他最近的人的距离是那两个人的index差除以2。如果第一个和最后一个座位是空位0,则alex可以坐到这个空位上,使得此时的距离最大。然后对所有的距离取最大的返回。

Java:

public int maxDistToClosest(int[] seats) {
int i, j, res = 0, n = seats.length;
for (i = j = 0; j < n; ++j)
if (seats[j] == 1) {
if (i == 0) res = Math.max(res, j - i);
else res = Math.max(res, (j - i + 1) / 2);
i = j + 1;
}
res = Math.max(res, n - i);
return res;
}

Java:

class Solution {
public int maxDistToClosest(int[] seats) {
int left = -1, maxDis = 0;
int len = seats.length; for (int i = 0; i < len; i++) {
if (seats[i] == 0) continue; if (left == -1) {
maxDis = Math.max(maxDis, i);
} else {
maxDis = Math.max(maxDis, (i - left) / 2);
}
left = i;
} if (seats[len - 1] == 0) {
maxDis = Math.max(maxDis, len - 1 - left);
} return maxDis;
}
}  

Python:

# Time:  O(n)
# Space: O(1)
class Solution(object):
def maxDistToClosest(self, seats):
"""
:type seats: List[int]
:rtype: int
"""
prev, result = -1, 1
for i in xrange(len(seats)):
if seats[i]:
if prev < 0:
result = i
else:
result = max(result, (i-prev)//2)
prev = i
return max(result, len(seats)-1-prev)  

Python: wo

class Solution(object):
def maxDistToClosest(self, seats):
"""
:type seats: List[int]
:rtype: int
"""
left = 0
max_d = 0
for i in range(len(seats)):
if seats[i] == 1:
if seats[0] == 0 and left == 0:
max_d = max(max_d, i - left)
else:
max_d = max(max_d, (i - left) / 2)
left = i if seats[-1] == 0:
max_d = max(max_d, len(seats) - 1 - left) return max_d

C++:  

int maxDistToClosest(vector<int> seats) {
int i, j, res = 0, n = seats.size();
for (i = j = 0; j < n; ++j)
if (seats[j] == 1) {
if (i == 0) res = max(res, j - i);
else res = max(res, (j - i + 1) / 2);
i = j + 1;
}
res = max(res, n - i);
return res;
}

    

All LeetCode Questions List 题目汇总

最新文章

  1. boost强分类器的实现
  2. What is “:-!!” in C code?
  3. Serv-U FTP之PASV和PORT模式
  4. NOIP2012 同余方程-拓展欧几里得
  5. (转载)C++ ofstream和ifstream详细用法
  6. nopCommerce架构分析系列(二)数据Cache
  7. jquery 中 (function( window, undefined ) {})(window)写法详解(转)
  8. Elasticsearch 索引别名与Template
  9. Web框架本质及第一个Django实例
  10. MVC编程模型
  11. gcc 各种参数
  12. Ch04 映射和元组 - 练习
  13. MySQL—查询某时间范围的数据
  14. 【代码笔记】Web-JavaScript-JavaScript用法
  15. HanLP代码与词典分离方案与流程
  16. Pandas汇总和处理缺失数据
  17. 安装phpcms时出现Warning: ob_start(): output handler \&#39;ob_gzhandler\&#39; conflicts with \&#39;zlib
  18. 去除img、video之间默认间隔的几种方法
  19. windows下的IO模型之完成端口
  20. Python案例之QQ空间自动登录程序实现

热门文章

  1. dp--01背包,完全背包,多重背包
  2. UOJ73 【WC2015】未来程序
  3. Pytest权威教程05-Pytest fixtures:清晰 模块化 易扩展
  4. 2018-2019-2 网络对抗技术 20165322 Exp9 Web安全基础
  5. JavaScript 如何工作的: 事件循环和异步编程的崛起 + 5 个关于如何使用 async/await 编写更好的技巧
  6. 2019-暑假作业-Java语言程序设计
  7. pyinstaller在64位系统下打包32位程序
  8. lnmp一键安装包 多PHP版本使用教程
  9. 深度学习面试题25:分离卷积(separable卷积)
  10. ORACLE AUDIT