forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
design-log-storage-system.cpp
44 lines (38 loc) · 1.29 KB
/
design-log-storage-system.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
// Time: put: O(logn), n is the size of the total logs
// retrieve: O(logn + d), d is the size of the found logs
// Space: O(n)
class LogSystem {
public:
LogSystem() {
granularity_["Year"] = 4;
granularity_["Month"] = 7;
granularity_["Day"] = 10;
granularity_["Hour"] = 13;
granularity_["Minute"] = 16;
granularity_["Second"] = 19;
}
void put(int id, string timestamp) {
lookup_.emplace(timestamp, id);
}
vector<int> retrieve(string s, string e, string gra) {
s = s.substr(0, granularity_[gra]) + s_filter_.substr(granularity_[gra]);
e = e.substr(0, granularity_[gra]) + e_filter_.substr(granularity_[gra]);
vector<int> result;
auto end = lookup_.upper_bound(e);
for (auto it = lookup_.lower_bound(s); it != end; ++it) {
result.emplace_back(it->second);
}
return result;
}
private:
string s_filter_ = "0001:01:01:00:00:00";
string e_filter_ = "9999:12:31:23:59:59";
unordered_map<string, int> granularity_;
multimap<string, int> lookup_;
};
/**
* Your LogSystem object will be instantiated and called as such:
* LogSystem obj = new LogSystem();
* obj.put(id,timestamp);
* vector<int> param_2 = obj.retrieve(s,e,gra);
*/