-
Notifications
You must be signed in to change notification settings - Fork 10
/
maximum-gap.cpp
92 lines (81 loc) · 3.13 KB
/
maximum-gap.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// Time: O(n)
// Space: O(n)
class Solution {
public:
struct Bucket {
int max = numeric_limits<int>::min();
int min = numeric_limits<int>::max();
};
int maximumGap(vector<int>& nums) {
if (nums.size() < 2) {
return 0;
}
// Init bucket.
int max_val = *max_element(nums.cbegin(), nums.cend());
int min_val = *min_element(nums.cbegin(), nums.cend());
int gap = max(1, static_cast<int>((max_val - min_val) /
(nums.size() - 1)));
vector<Bucket> buckets((max_val - min_val) / gap + 1);
// Find the bucket where the n should be put.
for (const auto& n : nums) {
// min_val / max_val is in the first / last bucket.
if (n == max_val || n == min_val) {
continue;
}
int i = (n - min_val) / gap;
buckets[i].min = min(buckets[i].min, n);
buckets[i].max = max(buckets[i].max, n);
}
// Maximum gap should not be smaller than any gap inside the bucket.
// i.e. max_gap >= (max_val - min_val) / (count - 1)
// Thus, only count each bucket gap between the first and the last bucket.
int max_gap = 0, pre_bucket_max = min_val;
for (const auto& bucket : buckets) {
if (bucket.min != numeric_limits<int>::max()) {
max_gap = max(max_gap, bucket.min - pre_bucket_max);
pre_bucket_max = bucket.max;
}
}
// Count the last bucket.
max_gap = max(max_gap, max_val - pre_bucket_max);
return max_gap;
}
};
// Time: O(nlogn)
// Space: O(n)
class Solution2 {
public:
int maximumGap(vector<int>& nums) {
if (nums.size() < 2) {
return 0;
}
// Init bucket.
int max_val = *max_element(nums.cbegin(), nums.cend());
int min_val = *min_element(nums.cbegin(), nums.cend());
int gap = max(1, static_cast<int>((max_val - min_val) /
(nums.size() - 1)));
map<int, array<int, 2>> bucket;
using ValueType = enum {MIN, MAX};
// Find the bucket where the n should be put.
for (const auto& n : nums) {
// min_val / max_val is in the first / last bucket.
if (n == max_val || n == min_val) {
continue ;
}
int i = (n - min_val) / gap;
bucket[i][MIN] = min(!bucket[i][MIN] ? numeric_limits<int>::max() :
bucket[i][MIN], n);
bucket[i][MAX] = max(!bucket[i][MAX] ? numeric_limits<int>::min() :
bucket[i][MAX], n);
}
// Count each bucket gap between the first and the last bucket.
int max_gap = 0, pre_bucket_max = min_val;
for (auto& kvp : bucket) {
max_gap = max(max_gap, kvp.second[MIN] - pre_bucket_max);
pre_bucket_max = (kvp.second)[MAX];
}
// Count the last bucket.
max_gap = max(max_gap, max_val - pre_bucket_max);
return max_gap;
}
};