355. Design Twitter
Description
Design a simplified version of Twitter where users can post tweets, follow/unfollow another user, and is able to see the 10
most recent tweets in the user's news feed.
Implement the Twitter
class:
Twitter()
Initializes your twitter object.void postTweet(int userId, int tweetId)
Composes a new tweet with IDtweetId
by the useruserId
. Each call to this function will be made with a uniquetweetId
.List<Integer> getNewsFeed(int userId)
Retrieves the10
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 themself. Tweets must be ordered from most recent to least recent.void follow(int followerId, int followeeId)
The user with IDfollowerId
started following the user with IDfolloweeId
.void unfollow(int followerId, int followeeId)
The user with IDfollowerId
started unfollowing the user with IDfolloweeId
.
Example 1:
Input ["Twitter", "postTweet", "getNewsFeed", "follow", "postTweet", "getNewsFeed", "unfollow", "getNewsFeed"] [[], [1, 5], [1], [1, 2], [2, 6], [1], [1, 2], [1]] Output [null, null, [5], null, null, [6, 5], null, [5]] Explanation Twitter twitter = new Twitter(); twitter.postTweet(1, 5); // User 1 posts a new tweet (id = 5). twitter.getNewsFeed(1); // User 1's news feed should return a list with 1 tweet id -> [5]. return [5] twitter.follow(1, 2); // User 1 follows user 2. twitter.postTweet(2, 6); // User 2 posts a new tweet (id = 6). twitter.getNewsFeed(1); // User 1's news feed should return a list with 2 tweet ids -> [6, 5]. Tweet id 6 should precede tweet id 5 because it is posted after tweet id 5. twitter.unfollow(1, 2); // User 1 unfollows user 2. twitter.getNewsFeed(1); // User 1's news feed should return a list with 1 tweet id -> [5], since user 1 is no longer following user 2.
Constraints:
1 <= userId, followerId, followeeId <= 500
0 <= tweetId <= 104
- All the tweets have unique IDs.
- At most
3 * 104
calls will be made topostTweet
,getNewsFeed
,follow
, andunfollow
.
Solution
design-twitter.py
class Tweet:
timestamp = 0
def __init__(self, tweet):
self.time = Tweet.timestamp
self.tweet = tweet
self.next = None
Tweet.timestamp += 1
class User:
def __init__(self, uid):
self.uid = uid
self.follows = set([uid])
self.tweet_head = None
def follow(self, uid):
self.follows.add(uid)
def unfollow(self, uid):
if uid in self.follows:
self.follows.remove(uid)
def post(self, tweetId):
tweet = Tweet(tweetId)
tweet.next = self.tweet_head
self.tweet_head = tweet
class Twitter:
def __init__(self):
"""
Initialize your data structure here.
"""
self.users = {}
def postTweet(self, userId: int, tweetId: int) -> None:
"""
Compose a new tweet.
"""
users = self.users
if userId not in users:
users[userId] = User(userId)
users[userId].post(tweetId)
def getNewsFeed(self, userId: int) -> List[int]:
"""
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.
"""
res = []
if userId not in self.users: return res
people = self.users[userId].follows
heap = []
for p in people:
t = self.users[p].tweet_head
if t:
heap.append((-t.time, t))
heapq.heapify(heap)
read = 0
while heap and read < 10:
_, t = heapq.heappop(heap)
res.append(t.tweet)
if t.next:
heapq.heappush(heap, (-t.next.time, t.next))
read += 1
return res
def follow(self, followerId: int, followeeId: int) -> None:
"""
Follower follows a followee. If the operation is invalid, it should be a no-op.
"""
if followerId not in self.users:
self.users[followerId] = User(followerId)
if followeeId not in self.users:
self.users[followeeId] = User(followeeId)
self.users[followerId].follow(followeeId)
def unfollow(self, followerId: int, followeeId: int) -> None:
"""
Follower unfollows a followee. If the operation is invalid, it should be a no-op.
"""
if followerId not in self.users or followerId == followeeId: return
self.users[followerId].unfollow(followeeId)
# Your Twitter object will be instantiated and called as such:
# obj = Twitter()
# obj.postTweet(userId,tweetId)
# param_2 = obj.getNewsFeed(userId)
# obj.follow(followerId,followeeId)
# obj.unfollow(followerId,followeeId)