Problem Description
You are given two integer arrays persons
and times
. In an election, the i
th vote was cast for persons[i]
at time times[i]
. For each query at a time t
, find the person that was leading the election at time t
. Votes cast at time t
will count towards our query. In the case of a tie, the most recent vote (among tied candidates) wins.
Key Insights
- Each vote is associated with a specific time, and votes are given in chronological order.
- The leader can change over time based on the votes, and we must determine the leader at multiple query times.
- A hash table can be used to keep track of the vote counts and determine the leader efficiently.
- Binary search can be utilized to quickly find the latest time less than or equal to the query time.
Space and Time Complexity
Time Complexity: O(n + q log n), where n is the number of votes, and q is the number of queries.
Space Complexity: O(n), for storing the counts of votes.
Solution
To solve this problem, we can maintain an array that records the leading candidate at each voting time. We iterate through the persons
and times
arrays to count votes for each candidate using a hash table. After updating the vote counts, we keep track of the current leading candidate and store it in an array. For each query, we use binary search on the times
array to find the appropriate index and return the leading candidate at that time.