Leecode #911. 在线选举
在选举中,第 i 张票是在时间为 times[i] 时投给 persons[i] 的。
现在,我们想要实现下面的查询函数: TopVotedCandidate.q(int t) 将返回在 t 时刻主导选举的候选人的编号。
在 t 时刻投出的选票也将被计入我们的查询之中。在平局的情况下,最近获得投票的候选人将会获胜。
示例:
输入:[“TopVotedCandidate”,”q”,”q”,”q”,”q”,”q”,”q”], [[[0,1,1,0,0,1,0],[0,5,10,15,20,25,30]],[3],[12],[25],[15],[24],[8]] 输出:[null,0,1,1,0,0,1] 解释: 时间为 3,票数分布情况是 [0],编号为 0 的候选人领先。 时间为 12,票数分布情况是 [0,1,1],编号为 1 的候选人领先。 时间为 25,票数分布情况是 [0,1,1,0,0,1],编号为 1 的候选人领先(因为最近的投票结果是平局)。 在时间 15、24 和 8 处继续执行 3 个查询。
import bisect
class TopVotedCandidate:
def __init__(self, persons: List[int], times: List[int]):
count = collections.defaultdict(int)
self.times = times
self.win = collections.defaultdict(int)
last_winner = -1
for i, time in enumerate(times):
person = persons[i]
count[person] += 1
if count[person] >= count[last_winner]:
last_winner = person
self.win[time] = last_winner
def q(self, t: int) -> int:
index = bisect.bisect_right(self.times, t)
print(t, self.times[index-1])
return self.win[self.times[index-1]]
# Your TopVotedCandidate object will be instantiated and called as such:
# obj = TopVotedCandidate(persons, times)
# param_1 = obj.q(t)