359. Logger Rate Limiter

Design a logger system that receives a stream of messages along with their timestamps. Each unique message should only be printed{" "} at most every 10 seconds (i.e. a message printed at timestamp t will prevent other identical messages from being printed until timestamp t + 10).

All messages will come in chronological order. Several messages may arrive at the same timestamp.

Implement the Logger class:

  • Logger() Initializes the logger object.
  • bool shouldPrintMessage(int timestamp, string message){" "} Returns true if the message should be printed in the given timestamp, otherwise returns false.

 

Example 1:

    Input
    {"\n"}["Logger", "shouldPrintMessage", "shouldPrintMessage",
    "shouldPrintMessage", "shouldPrintMessage", "shouldPrintMessage",
    "shouldPrintMessage"]{"\n"}[[], [1, "foo"], [2, "bar"], [3, "foo"], [8,
    "bar"], [10, "foo"], [11, "foo"]]{"\n"}
    Output
    {"\n"}[null, true, true, false, false, false, true]{"\n"}
    {"\n"}
    Explanation
    {"\n"}Logger logger = new Logger();{"\n"}logger.shouldPrintMessage(1,
    "foo");{"  "}// return true, next allowed timestamp for "foo" is 1 + 10 = 11
    {"\n"}logger.shouldPrintMessage(2, "bar");{"  "}// return true, next allowed
    timestamp for "bar" is 2 + 10 = 12{"\n"}logger.shouldPrintMessage(3, "foo");
    {"  "}// 3 < 11, return false{"\n"}logger.shouldPrintMessage(8, "bar");
    {"  "}// 8 < 12, return false{"\n"}logger.shouldPrintMessage(10, "foo");
    // 10 < 11, return false{"\n"}logger.shouldPrintMessage(11, "foo"); // 11
    >= 11, return true, next allowed timestamp for "foo" is 11 + 10 = 21
    {"\n"}
  

 

Constraints:

  • 0 <= timestamp <= 109
  • Every timestamp will be passed in non-decreasing order (chronological order).
  • 1 <= message.length <= 30
  • At most{" "} 104 {" "} calls will be made to shouldPrintMessage.

Solution

Naive Solution

We can store a list of all previous (timestamp, message) pairs. In each call, we loop through the list to get the most recent time message was logged and check if it was within 10 seconds of timestamp. Let nn be the number of times shouldPrintMessage is called. Checking through the list takes O(n)\mathcal{O}(n), so we take O(n2)\mathcal{O}(n^2) in total. Our list has size nn, taking O(n)\mathcal{O}(n) space. This is fast enough, but we can do better.

Faster Solution

We use a hashmap that maps messages to their most recent timestamps. Retrieving/assigning hashmap[message] takes O(1)\mathcal{O}(1), so we take O(n)\mathcal{O}(n) in total. We also take O(n)\mathcal{O}(n) space (in the worst case, every message is different, so all of them need to be inserted into the hashmap).

C++ Solution

1class Logger {
2public:
3    unordered_map<string, int> lastTime;
4    bool shouldPrintMessage(int timestamp, string message) {
5        if (lastTime.count(message) and timestamp - lastTime[message] < 10)
6            return false;
7        lastTime[message] = timestamp;
8        return true;
9    }
10};
11
12/**
13 * Your Logger object will be instantiated and called as such:
14 * Logger* obj = new Logger();
15 * bool param_1 = obj->shouldPrintMessage(timestamp,message);
16 */

Java Solution

1class Logger {
2    HashMap<String, Integer> lastTime;
3    public Logger() {
4        lastTime = new HashMap<>();
5    }
6    public boolean shouldPrintMessage(int timestamp, String message) {
7        if (timestamp - lastTime.getOrDefault(message, -100) < 10)
8            return false;
9        lastTime.put(message, timestamp);
10        return true;
11    }
12}
13
14/**
15 * Your Logger object will be instantiated and called as such:
16 * Logger obj = new Logger();
17 * boolean param_1 = obj.shouldPrintMessage(timestamp,message);
18 */

Python Solution

1class Logger:
2    def __init__(self):
3        self.lastTime = dict()
4    def shouldPrintMessage(self, timestamp: int, message: str) -> bool:
5        if message in self.lastTime and timestamp - self.lastTime[message] < 10:
6            return False
7        self.lastTime[message] = timestamp
8        return True
9
10# Your Logger object will be instantiated and called as such:
11# obj = Logger()
12# param_1 = obj.shouldPrintMessage(timestamp,message)

Recommended Readings


Got a question? Ask the Teaching Assistant anything you don't understand.

Still not clear? Ask in the Forum,  Discord or Submit the part you don't understand to our editors.

←
↑TA đŸ‘šâ€đŸ«