forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 14
/
snapshot-array.cpp
41 lines (35 loc) · 1014 Bytes
/
snapshot-array.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
// Time: set: O(1)
// get: O(logn), n is the total number of set
// Space: O(n)
class SnapshotArray {
public:
SnapshotArray(int length) {
}
void set(int index, int val) {
if (!A_.count(index)) {
A_[index].emplace_back(-1, 0);
}
A_[index].emplace_back(snap_id_, val);
}
int snap() {
return snap_id_++;
}
int get(int index, int snap_id) {
if (!A_.count(index)) {
A_[index].emplace_back(-1, 0);
}
const auto& it = prev(upper_bound(A_[index].cbegin(), A_[index].cend(),
make_pair(snap_id + 1, 0)));
return it->second;
}
private:
unordered_map<int, vector<pair<int, int>>> A_;
int snap_id_ = 0;
};
/**
* Your SnapshotArray object will be instantiated and called as such:
* SnapshotArray* obj = new SnapshotArray(length);
* obj->set(index,val);
* int param_2 = obj->snap();
* int param_3 = obj->get(index,snap_id);
*/