Hello codeforces!
Recently in the problem I came across with this data structure, which can perform this operations:
add element
delete element
return the maximal of it
with O(1) for query.
So the question is simple: is it exist?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Hello codeforces!
Recently in the problem I came across with this data structure, which can perform this operations:
add element
delete element
return the maximal of it
with O(1) for query.
So the question is simple: is it exist?
Name |
---|
Auto comment: topic has been updated by waipoli (previous revision, new revision, compare).
Auto comment: topic has been updated by waipoli (previous revision, new revision, compare).
You can use heap but it is O(log n) for each. I think it is the best for your need.
I have forgot to mention that i'm happy with offline solution
Offline approach where you have addition and deletion?? Is it possible?
Doesn't set do same thing or am I missing something?
No. Consider there exists some ds which perfoms given operations in O(1). Suppose I insert N elements.
Further I would store current maximal element (say in an array) and delete it in O(2) and continue this process N times. The resultant vector would contain sorted elements in effective time of O(3N) which is not possile.
(It can be proved worst case time complexity of sorting an array cannot be less than NlogN.)
Thank you!
:)
nice argument
You can write a Fibonacci's heap, which can add element and get min/max in $$$O(1)$$$. But it can delete only in $$$log(n)$$$ time
You can use soft heap. It can add element or delete minimum ( and some other operations ) in O(1), but not delete some elements. Deleting I see as memorizing number of elements in some hashset and when we have x as minimum and number of x in that hashset is 0, we can say that it is minimum ( for maximum multiply all numbers by -1 ) and otherwise decrease it's number from hashset and perform operation one more time. The only issue there that the elements can be corrupted. You choose some E and then you can performe operations in O(log(1/E)) time and at most E*n out of n elements are corrupted. It is even more complicated them Fibonacci's heap.