classTwitter:def__init__(self):""" Initialize your data structure here. """self.user_tweets=defaultdict(list)self.user_following=defaultdict(set)self.tweets=defaultdict()self.time=0defpostTweet(self,userId:int,tweetId:int)->None:""" Compose a new tweet. """self.time+=1self.user_tweets[userId].append(tweetId)self.tweets[tweetId]=self.timedefgetNewsFeed(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. """following=self.user_following[userId]users=set(following)users.add(userId)tweets=[self.user_tweets[u][::-1][:10]foruinusers]tweets=sum(tweets,[])returnnlargest(10,tweets,key=lambdatweet:self.tweets[tweet])deffollow(self,followerId:int,followeeId:int)->None:""" Follower follows a followee. If the operation is invalid, it should be a no-op. """self.user_following[followerId].add(followeeId)defunfollow(self,followerId:int,followeeId:int)->None:""" Follower unfollows a followee. If the operation is invalid, it should be a no-op. """following=self.user_following[followerId]iffolloweeIdinfollowing:following.remove(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)
classTwitter{privateMap<Integer,List<Integer>>userTweets;privateMap<Integer,Set<Integer>>userFollowing;privateMap<Integer,Integer>tweets;privateinttime;/** Initialize your data structure here. */publicTwitter(){userTweets=newHashMap<>();userFollowing=newHashMap<>();tweets=newHashMap<>();time=0;}/** Compose a new tweet. */publicvoidpostTweet(intuserId,inttweetId){userTweets.computeIfAbsent(userId,k->newArrayList<>()).add(tweetId);tweets.put(tweetId,++time);}/** * 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. */publicList<Integer>getNewsFeed(intuserId){Set<Integer>following=userFollowing.getOrDefault(userId,newHashSet<>());Set<Integer>users=newHashSet<>(following);users.add(userId);PriorityQueue<Integer>pq=newPriorityQueue<>(10,(a,b)->(tweets.get(b)-tweets.get(a)));for(Integeru:users){List<Integer>userTweet=userTweets.get(u);if(userTweet!=null&&!userTweet.isEmpty()){for(inti=userTweet.size()-1,k=10;i>=0&&k>0;--i,--k){pq.offer(userTweet.get(i));}}}List<Integer>res=newArrayList<>();while(!pq.isEmpty()&&res.size()<10){res.add(pq.poll());}returnres;}/** Follower follows a followee. If the operation is invalid, it should be a no-op. */publicvoidfollow(intfollowerId,intfolloweeId){userFollowing.computeIfAbsent(followerId,k->newHashSet<>()).add(followeeId);}/** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */publicvoidunfollow(intfollowerId,intfolloweeId){userFollowing.computeIfAbsent(followerId,k->newHashSet<>()).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); */