You are given an initial list of events, where each event has a unique eventId and a priority.
Implement the EventManager class:
EventManager(int[][] events) Initializes the manager with the given events, where events[i] = [eventIdi, priorityi].void updatePriority(int eventId, int newPriority) Updates the priority of the active event with id eventId to newPriority.int pollHighest() Removes and returns the eventId of the active event with the highest priority. If multiple active events have the same priority, return the smallest eventId among them. If there are no active events, return -1.An event is called active if it has not been removed by pollHighest().
Example 1:
Input:
["EventManager", "pollHighest", "updatePriority", "pollHighest", "pollHighest"]
[[[[5, 7], [2, 7], [9, 4]]], [], [9, 7], [], []]
Output:
[null, 2, null, 5, 9]
Explanation
EventManager eventManager = new EventManager([[5,7], [2,7], [9,4]]); // Initializes the manager with three eventsExample 2:
Input:
["EventManager", "pollHighest", "pollHighest", "pollHighest"]
[[[[4, 1], [7, 2]]], [], [], []]
Output:
[null, 7, 4, -1]
Explanation
EventManager eventManager = new EventManager([[4,1], [7,2]]); // Initializes the manager with two eventsConstraints:
1 <= events.length <= 105events[i] = [eventId, priority]1 <= eventId <= 1091 <= priority <= 109eventId in events are unique.1 <= newPriority <= 109updatePriority, eventId refers to an active event.105 calls in total will be made to updatePriority and pollHighest.Loading editor...
["EventManager","pollHighest","updatePriority","pollHighest","pollHighest"] [[[[5,7],[2,7],[9,4]]],[],[9,7],[],[]]