-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0355-design-twitter.cpp
76 lines (62 loc) · 1.85 KB
/
0355-design-twitter.cpp
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
class Twitter {
public:
map<int,set<int>> mp;
map<int,pair<int,int>,greater<int>> post;
int tweetCt;
Twitter() {
tweetCt=0;
}
void postTweet(int userId, int tweetId) {
tweetCt++;
post[tweetCt]={userId,tweetId};
mp[userId].insert(userId);
}
vector<int> getNewsFeed(int userId) {
// cout<<"----"<<endl;
priority_queue<pair<int,int>,vector<pair<int,int>>,greater<pair<int,int>>> pq;
for(auto &it:mp[userId])
{
// cout<<userId<<" "<<it<<"frient"<<endl;
for(auto &it1:post)
{
if(it1.second.first==it)
{
if(pq.size()<10)
{
pq.push({it1.first,it1.second.second});
}
else
{
if(it1.first>pq.top().first)
{
pq.pop();
pq.push({it1.first,it1.second.second});
}
}
}
}
}
vector<int> ans;
while(!pq.empty())
{
ans.push_back(pq.top().second);
pq.pop();
}
reverse(ans.begin(),ans.end());
return ans;
}
void follow(int followerId, int followeeId) {
mp[followerId].insert(followeeId);
}
void unfollow(int followerId, int followeeId) {
mp[followerId].erase(followeeId);
}
};
/**
* Your Twitter object will be instantiated and called as such:
* Twitter* obj = new Twitter();
* obj->postTweet(userId,tweetId);
* vector<int> param_2 = obj->getNewsFeed(userId);
* obj->follow(followerId,followeeId);
* obj->unfollow(followerId,followeeId);
*/