[LeetCode] Number of Recent Calls

933. Number of Recent Calls

You have a RecentCounter class which counts the number of recent requests within a certain time frame.

Implement the RecentCounter class:

  • RecentCounter() Initializes the counter with zero recent requests.
  • int ping(int t) Adds a new request at time t, where t represents some time in milliseconds, and returns the number of requests that has happened in the past 3000 milliseconds (including the new request). Specifically, return the number of requests that have happened in the inclusive range [t - 3000, t].

It is guaranteed that every call to ping uses a strictly larger value of t than the previous call.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class RecentCounter {
deque<int> dq;
public:
RecentCounter() {
dq = {};
}

int ping(int t) {
dq.push_back(t);
while(dq.size() and dq.front() < t - 3000) dq.pop_front();
return dq.size();
}
};

/**
* Your RecentCounter object will be instantiated and called as such:
* RecentCounter* obj = new RecentCounter();
* int param_1 = obj->ping(t);
*/
Author: Song Hayoung
Link: https://songhayoung.github.io/2023/07/30/PS/LeetCode/number-of-recent-calls/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.