forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1348.java
92 lines (87 loc) · 4.61 KB
/
_1348.java
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
/**
* 1348. Tweet Counts Per Frequency
*
* 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 + delta*1>, [startTime + delta*1, startTime + delta*2>, [startTime + delta*2, startTime + delta*3>, ... , [startTime + delta*i, min(startTime + delta*(i+1), endTime + 1)> for some non-negative number i and delta (which depends on freq).
*
* 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.
*
* Constraints:
* There will be at most 10000 operations considering both recordTweet and getTweetCountsPerFrequency.
* 0 <= time, startTime, endTime <= 10^9
* 0 <= endTime - startTime <= 10^4
* */
public class _1348 {
public static class Solution1 {
public static class TweetCounts {
/**
* credit: https://leetcode.com/problems/tweet-counts-per-frequency/discuss/503453/Java-TreeMap-Accepted-Solution-Easy-Understand
*/
private Map<String, TreeMap<Integer, Integer>> map;
public TweetCounts() {
map = new HashMap<>();
}
public void recordTweet(String tweetName, int time) {
if (!map.containsKey(tweetName)) {
map.put(tweetName, new TreeMap<>());
}
TreeMap<Integer, Integer> tweetMap = map.get(tweetName);
tweetMap.put(time, tweetMap.getOrDefault(time, 0) + 1);
}
public List<Integer> getTweetCountsPerFrequency(String freq, String tweetName, int startTime, int endTime) {
if (!map.containsKey(tweetName)) {
return null;
}
int interval;
if (freq.equals("minute")) {
interval = 60;
} else if (freq.equals("hour")) {
interval = 60 * 60;
} else {
interval = 60 * 60 * 24;
}
int size = ((endTime - startTime) / interval) + 1;
int[] buckets = new int[size];
TreeMap<Integer, Integer> tweetMap = map.get(tweetName);
for (Map.Entry<Integer, Integer> entry : tweetMap.subMap(startTime, endTime + 1).entrySet()) {
int index = (entry.getKey() - startTime) / interval;
buckets[index] += entry.getValue();
}
List<Integer> result = new ArrayList<>();
for (int num : buckets) {
result.add(num);
}
return result;
}
}
}
}