-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.cpp
36 lines (29 loc) · 877 Bytes
/
test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Solution {
public:
int maxConsecutive(int bottom, int top, vector<int> &special) {
// Sắp xếp mảng special
sort(special.begin(), special.end());
int n = special.size();
int res = 0;
// Kiểm tra khoảng từ bottom đến số đặc biệt đầu tiên
if (special[0] != bottom) {
res = special[0] - bottom;
}
// Kiểm tra khoảng từ số đặc biệt cuối cùng đến top
if (special[n - 1] != top) {
res = max(res, top - special[n - 1]);
}
// Duyệt qua các khoảng giữa các số đặc biệt liên tiếp
for (int i = 1; i < n; i++) {
if (special[i] - special[i - 1] > 1) {
res = max(res, special[i] - special[i - 1] - 1);
}
}
return res;
}
};
int main() { return 0; }