-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesign-twitter.cpp
52 lines (44 loc) · 1.81 KB
/
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
class Twitter {
public:
unordered_map<int,unordered_set<int>> uu;
unordered_map<int,vector<pair<int,int>>> ut;
int id;// 这是时间戳,发的晚不代表tweetId就大。
/** Initialize your data structure here. */
Twitter() {
}
/** Compose a new tweet. */
void postTweet(int userId, int tweetId) {
ut[userId].emplace_back(pair(id++,tweetId));
}
/** Retrieve the 10 most recent tweet ids in the user's news feed. Each item in the news feed must be posted by users who the user followed or by the user herself. Tweets must be ordered from most recent to least recent. */
vector<int> getNewsFeed(int userId) {
unordered_set<int> u(uu[userId].begin(),uu[userId].end());
u.emplace(userId);
vector<pair<int,int>> t;
for(const auto &user:u){
for(const auto tweet:ut[user]){
t.emplace_back(tweet);
}
}
sort(t.rbegin(),t.rend()); //使用r进行倒着排序,这个trick要记住!!!
vector<int> result;
for(int i=0;i<10 && i<t.size();i++) result.push_back(t[i].second);
return result;
}
/** Follower follows a followee. If the operation is invalid, it should be a no-op. */
void follow(int followerId, int followeeId) {
uu[followerId].emplace(followeeId);
}
/** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
void unfollow(int followerId, int followeeId) {
uu[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);
*/