2274-不含特殊楼层的最大连续楼层数

Raphael Liu Lv10

Alice 管理着一家公司,并租用大楼的部分楼层作为办公空间。Alice 决定将一些楼层作为 特殊楼层 ,仅用于放松。

给你两个整数 bottomtop ,表示 Alice 租用了从 bottomtop(含 bottomtop
在内)的所有楼层。另给你一个整数数组 special ,其中 special[i] 表示 Alice 指定用于放松的特殊楼层。

返回不含特殊楼层的 最大 连续楼层数。

示例 1:

**输入:** bottom = 2, top = 9, special = [4,6]
**输出:** 3
**解释:** 下面列出的是不含特殊楼层的连续楼层范围:
- (2, 3) ,楼层数为 2 。
- (5, 5) ,楼层数为 1 。
- (7, 9) ,楼层数为 3 。
因此,返回最大连续楼层数 3 。

示例 2:

**输入:** bottom = 6, top = 8, special = [7,6,8]
**输出:** 0
**解释:** 每层楼都被规划为特殊楼层,所以返回 0 。

提示

  • 1 <= special.length <= 105
  • 1 <= bottom <= special[i] <= top <= 109
  • special 中的所有值 互不相同

方法一:排序

思路与算法

如果我们将给定的数组 special 按照升序排序,那么相邻两个元素之间的楼层就都不是特殊楼层。如果相邻的两个元素分别为 x, y,那么非特殊楼层的数量即为 y-x-1。

但这样会忽略最开始和结束的非特殊楼层,因此我们可以在排序前将 bottom}-1 和 top}+1 也放入数组中,一起进行排序。这样一来,所有 y-x-1 中的最大值即为答案。

代码

[sol1-C++]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Solution {
public:
int maxConsecutive(int bottom, int top, vector<int>& special) {
special.push_back(bottom - 1);
special.push_back(top + 1);
sort(special.begin(), special.end());

int n = special.size();
int ans = 0;
for (int i = 0; i < n - 1; ++i) {
ans = max(ans, special[i + 1] - special[i] - 1);
}
return ans;
}
};
[sol1-Python3]
1
2
3
4
5
6
7
8
9
10
class Solution:
def maxConsecutive(self, bottom: int, top: int, special: List[int]) -> int:
special.extend([bottom - 1, top + 1])
special.sort()

n = len(special)
ans = 0
for i in range(n - 1):
ans = max(ans, special[i + 1] - special[i] - 1)
return ans

复杂度分析

  • 时间复杂度:O(n \log n),其中 n 是数组 special 的长度。

  • 空间复杂度:O(\log n),即为排序需要使用的栈空间。

 Comments
On this page
2274-不含特殊楼层的最大连续楼层数