-
Notifications
You must be signed in to change notification settings - Fork 13
/
362.敲击计数器.py
71 lines (66 loc) · 2.11 KB
/
362.敲击计数器.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 设计一个敲击计数器,使它可以统计在过去5分钟内被敲击次数。
#
# 每个函数会接收一个时间戳参数(以秒为单位),你可以假设最早的时间戳从1开始,且都是按照时间顺序对系统进行调用(即时间戳是单调递增)。
#
# 在同一时刻有可能会有多次敲击。
#
# 示例:
#
# HitCounter counter = new HitCounter();
#
# // 在时刻 1 敲击一次。
# counter.hit(1);
#
# // 在时刻 2 敲击一次。
# counter.hit(2);
#
# // 在时刻 3 敲击一次。
# counter.hit(3);
#
# // 在时刻 4 统计过去 5 分钟内的敲击次数, 函数返回 3 。
# counter.getHits(4);
#
# // 在时刻 300 敲击一次。
# counter.hit(300);
#
# // 在时刻 300 统计过去 5 分钟内的敲击次数,函数返回 4 。
# counter.getHits(300);
#
# // 在时刻 301 统计过去 5 分钟内的敲击次数,函数返回 3 。
# counter.getHits(301);
# 进阶:
#
# 如果每秒的敲击次数是一个很大的数字,你的计数器可以应对吗?
class HitCounter:
def __init__(self):
"""
Initialize your data structure here.
"""
self.record = {}
def hit(self, timestamp: int) -> None:
"""
Record a hit.
@param timestamp - The current timestamp (in seconds granularity).
"""
if timestamp not in self.record:
self.record[timestamp] = 1
else:
self.record[timestamp] += 1
def getHits(self, timestamp: int) -> int:
"""
Return the number of hits in the past 5 minutes.
@param timestamp - The current timestamp (in seconds granularity).
"""
self.cnt = 0
if timestamp > 300:
gap = [timestamp - 299, timestamp]
else:
gap = [1, timestamp]
for i in self.record:
if i >= gap[0] and i <= gap[1]:
self.cnt += self.record[i]
return self.cnt
# Your HitCounter object will be instantiated and called as such:
# obj = HitCounter()
# obj.hit(timestamp)
# param_2 = obj.getHits(timestamp)