leetcode1348 Tweet Counts Per Frequency

第 175 场周赛

Description

Implement the class TweetCounts that supports two methods:

  1. recordTweet(string tweetName, int time)

Stores the tweetName at the recorded time (in seconds).
2. getTweetCountsPerFrequency(string freq, string tweetName, int startTime, int endTime)

Returns the total number of occurrences for the given tweetName per minute, hour, or day (depending on freq) starting from the startTime (in seconds) and ending at the endTime (in seconds).
freq is always minute, hour or day, representing the time interval to get the total number of occurrences for the given tweetName.
The first time interval always starts from the startTime, so the time intervals are [startTime, startTime + delta1>, [startTime + delta1, startTime + delta2>, [startTime + delta2, startTime + delta3>, ... , [startTime + deltai, min(startTime + delta*(i+1), endTime + 1)> for some non-negative number i and delta (which depends on freq).

Constraints

There will be at most 10000 operations considering both recordTweet and getTweetCountsPerFrequency.

  • 0 <= time, startTime, endTime <= 10^9
  • 0 <= endTime - startTime <= 10^4

Example

Input

["TweetCounts","recordTweet","recordTweet","recordTweet","getTweetCountsPerFrequency","getTweetCountsPerFrequency","recordTweet","getTweetCountsPerFrequency"]
[[],["tweet3",0],["tweet3",60],["tweet3",10],["minute","tweet3",0,59],["minute","tweet3",0,60],["tweet3",120],["hour","tweet3",0,210]]

Output

[null,null,null,null,[2],[2,1],null,[4]]

Explanation

TweetCounts tweetCounts = new TweetCounts();
tweetCounts.recordTweet("tweet3", 0);
tweetCounts.recordTweet("tweet3", 60);
tweetCounts.recordTweet("tweet3", 10);                             // All tweets correspond to "tweet3" with recorded times at 0, 10 and 60.
tweetCounts.getTweetCountsPerFrequency("minute", "tweet3", 0, 59); // return [2]. The frequency is per minute (60 seconds), so there is one interval of time: 1) [0, 60> - > 2 tweets.
tweetCounts.getTweetCountsPerFrequency("minute", "tweet3", 0, 60); // return [2, 1]. The frequency is per minute (60 seconds), so there are two intervals of time: 1) [0, 60> - > 2 tweets, and 2) [60,61> - > 1 tweet.
tweetCounts.recordTweet("tweet3", 120);                            // All tweets correspond to "tweet3" with recorded times at 0, 10, 60 and 120.
tweetCounts.getTweetCountsPerFrequency("hour", "tweet3", 0, 210);  // return [4]. The frequency is per hour (3600 seconds), so there is one interval of time: 1) [0, 211> - > 4 tweets.

Code

class TweetCounts {
public:
    TweetCounts() {
        t.clear();mp.clear();
        t.resize(10);
        r=0;
    }
    
    void recordTweet(string tweetName, int time) {
        if(mp[tweetName]==0){
            mp[tweetName]=++r;
        }
        t[mp[tweetName]].push_back(time);
    }
    
    vector<int> getTweetCountsPerFrequency(string freq, string tweetName, int startTime, int endTime) {
        int f,i;
        if(freq=="minute")f=60;
        else if(freq=="hour")f=3600;
        else if(freq=="day")f=24*3600;
        vector<int>px((endTime-startTime)/f+1,0);
        int index=mp[tweetName];
        for(auto &u:t[index]){
            if(u>endTime||u<startTime)continue;
            else px[(u-startTime)/f]++;
        }
        return px;
    }
private:
    vector<vector<int>> t;
    unordered_map<string,int>mp;
    int r;
};

Summary

  • unordered_map易错点:index和record_sum的区别
  • 怎么找循环-->数组是否可以直接定位
posted @ 2020-02-09 20:31  飞翔的菜鸟123  阅读(140)  评论(0编辑  收藏  举报