中文题目
写一个 RecentCounter
类来计算特定时间范围内最近的请求。
请实现 RecentCounter
类:
RecentCounter()
初始化计数器,请求数为 0 。int ping(int t)
在时间t
添加一个新请求,其中t
表示以毫秒为单位的某个时间,并返回过去3000
毫秒内发生的所有请求数(包括新请求)。确切地说,返回在[t-3000, t]
内发生的请求数。
保证 每次对 ping
的调用都使用比之前更大的 t
值。
示例:
输入: inputs = ["RecentCounter", "ping", "ping", "ping", "ping"] inputs = [[], [1], [100], [3001], [3002]] 输出: [null, 1, 2, 3, 3] 解释: RecentCounter recentCounter = new RecentCounter(); recentCounter.ping(1); // requests = [1],范围是 [-2999,1],返回 1 recentCounter.ping(100); // requests = [1, 100],范围是 [-2900,100],返回 2 recentCounter.ping(3001); // requests = [1, 100, 3001],范围是 [1,3001],返回 3 recentCounter.ping(3002); // requests = [1, 100, 3001, 3002],范围是 [2,3002],返回 3
提示:
1 <= t <= 109
- 保证每次对
ping
调用所使用的t
值都 严格递增 - 至多调用
ping
方法104
次
注意:本题与主站 933 题相同: https://leetcode-cn.com/problems/number-of-recent-calls/
通过代码
高赞题解
队列
因为需要使用到时间 t 之前的时间,所以将每次的时间都存入一个容器中。当输入到时间 t 时,有效的时间为 [t-3000, t],所以只要去掉容器中所有小于 t-3000 的时间即可。因为时间越来越大,所以越早输入的越小,根据存入容器的先后顺序判断时间是否符合,不符合则将其从容器中删除,直到遍历到符合要求的时间为止,停止删除。可以发现容器需要符合 “先入先出” 的规则,故使用队列保存时间。
代码如下,每次 ping 操作的时间复杂度是 O(1),空间复杂度为 O(1)。
class RecentCounter {
private:
int slot;
queue<int> time;
public:
RecentCounter() {
slot = 3000;
}
int ping(int t) {
time.push(t);
int early = t - slot;
while (time.front() < early) {
time.pop();
}
return time.size();
}
};
统计信息
通过次数 | 提交次数 | AC比率 |
---|---|---|
4231 | 5075 | 83.4% |
提交历史
提交时间 | 提交结果 | 执行时间 | 内存消耗 | 语言 |
---|