-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0355-design-twitter.java
88 lines (71 loc) · 2.12 KB
/
0355-design-twitter.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
class Twitter {
int count;
HashMap<Integer, List<int[]>> tweetMap;
HashMap<Integer, HashSet<Integer>> followerMap;
public Twitter() {
count = 0;
tweetMap = new HashMap<>();
followerMap = new HashMap<>();
}
public void postTweet(int userId, int tweetId) {
tweetMap.computeIfAbsent(userId,
k -> new ArrayList<>()
);
tweetMap.computeIfPresent(userId, (k, v) -> {
v.add(new int[]{count, tweetId});
return v;
});
++count;
}
public List<Integer> getNewsFeed(int userId) {
List<Integer> res = new ArrayList<>();
PriorityQueue<int[]> pq = new PriorityQueue<>((a, b) ->
Integer.compare(b[0], a[0])
);
followerMap.computeIfAbsent(userId,
k -> new HashSet<>()
);
followerMap.get(userId).add(userId);
followerMap.get(userId).forEach((followeeId) -> {
if (tweetMap.containsKey(followeeId)) {
int i = tweetMap.get(followeeId).size() - 1;
int[] tweet = tweetMap.get(followeeId).get(i);
pq.offer(new int[]{tweet[0], tweet[1],
followeeId, --i});
}
});
while (!pq.isEmpty() && res.size() < 10) {
int[] data = pq.poll();
res.add(data[1]);
if (data[3] >= 0) {
int[] tweet = tweetMap.get(data[2]).get(data[3]);
pq.offer(new int[]{tweet[0], tweet[1],
data[2], --data[3]});
}
}
return res;
}
public void follow(int followerId, int followeeId) {
followerMap.computeIfAbsent(followerId,
k -> new HashSet<>());
followerMap.computeIfPresent(followerId, (k, v) -> {
v.add(followeeId);
return v;
});
}
public void unfollow(int followerId, int followeeId) {
HashSet<Integer> set = followerMap.computeIfAbsent(followerId,
k -> new HashSet<>());
if (set.contains(followeeId)) {
set.remove(followeeId);
}
}
}
/**
* Your Twitter object will be instantiated and called as such:
* Twitter obj = new Twitter();
* obj.postTweet(userId,tweetId);
* List<Integer> param_2 = obj.getNewsFeed(userId);
* obj.follow(followerId,followeeId);
* obj.unfollow(followerId,followeeId);
*/