Is it possible for monotonic priority queue to have :
- O(1) for finding and delete item with highest priority,
- O(1) for inserting item assuming the priority given is lower than every other item,
- O(log n) for inserting and deleting item without assumption?
I do know if the insertion and deletion is allowed to be O(n), by using linked list. I was also thinking of skip list. However, in worst case, inserting and deleting item is O(n).
Decrease-key is not required.