solution.md 10.7 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 设计推特
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3
<p>设计一个简化版的推特(Twitter),可以让用户实现发送推文,关注/取消关注其他用户,能够看见关注人(包括自己)的最近 <code>10</code> 条推文。</p>\n\n<p>实现 <code>Twitter</code> 类:</p>\n\n<ul>\n\t<li><code>Twitter()</code> 初始化简易版推特对象</li>\n\t<li><code>void postTweet(int userId, int tweetId)</code> 根据给定的 <code>tweetId</code><code>userId</code> 创建一条新推文。每次调用次函数都会使用一个不同的 <code>tweetId</code></li>\n\t<li><code>List&lt;Integer&gt; getNewsFeed(int userId)</code> 检索当前用户新闻推送中最近&nbsp; <code>10</code> 条推文的 ID 。新闻推送中的每一项都必须是由用户关注的人或者是用户自己发布的推文。推文必须 <strong>按照时间顺序由最近到最远排序</strong></li>\n\t<li><code>void follow(int followerId, int followeeId)</code> ID 为 <code>followerId</code> 的用户开始关注 ID 为 <code>followeeId</code> 的用户。</li>\n\t<li><code>void unfollow(int followerId, int followeeId)</code> ID 为 <code>followerId</code> 的用户不再关注 ID 为 <code>followeeId</code> 的用户。</li>\n</ul>\n\n<p>&nbsp;</p>\n\n<p><strong>示例:</strong></p>\n\n<pre>\n<strong>输入</strong>\n[\"Twitter\", \"postTweet\", \"getNewsFeed\", \"follow\", \"postTweet\", \"getNewsFeed\", \"unfollow\", \"getNewsFeed\"]\n[[], [1, 5], [1], [1, 2], [2, 6], [1], [1, 2], [1]]\n<strong>输出</strong>\n[null, null, [5], null, null, [6, 5], null, [5]]\n\n<strong>解释</strong>\nTwitter twitter = new Twitter();\ntwitter.postTweet(1, 5); // 用户 1 发送了一条新推文 (用户 id = 1, 推文 id = 5)\ntwitter.getNewsFeed(1);  // 用户 1 的获取推文应当返回一个列表,其中包含一个 id 为 5 的推文\ntwitter.follow(1, 2);    // 用户 1 关注了用户 2\ntwitter.postTweet(2, 6); // 用户 2 发送了一个新推文 (推文 id = 6)\ntwitter.getNewsFeed(1);  // 用户 1 的获取推文应当返回一个列表,其中包含两个推文,id 分别为 -&gt; [6, 5] 。推文 id 6 应当在推文 id 5 之前,因为它是在 5 之后发送的\ntwitter.unfollow(1, 2);  // 用户 1 取消关注了用户 2\ntwitter.getNewsFeed(1);  // 用户 1 获取推文应当返回一个列表,其中包含一个 id 为 5 的推文。因为用户 1 已经不再关注用户 2</pre>\n\n<p>&nbsp;</p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 &lt;= userId, followerId, followeeId &lt;= 500</code></li>\n\t<li><code>0 &lt;= tweetId &lt;= 10<sup>4</sup></code></li>\n\t<li>所有推特的 ID 都互不相同</li>\n\t<li><code>postTweet</code><code>getNewsFeed</code><code>follow</code><code>unfollow</code> 方法最多调用 <code>3 * 10<sup>4</sup></code></li>\n</ul>\n
每日一练社区's avatar
每日一练社区 已提交
4

每日一练社区's avatar
每日一练社区 已提交
5
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
6

每日一练社区's avatar
每日一练社区 已提交
7
## aop
F
fix bug  
feilong 已提交
8

每日一练社区's avatar
每日一练社区 已提交
9
### before
F
fix bug  
feilong 已提交
10

每日一练社区's avatar
每日一练社区 已提交
11
```c
每日一练社区's avatar
每日一练社区 已提交
12 13 14
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
15

每日一练社区's avatar
每日一练社区 已提交
16
### after
F
fix bug  
feilong 已提交
17

每日一练社区's avatar
每日一练社区 已提交
18
```c
每日一练社区's avatar
每日一练社区 已提交
19 20 21 22

```

## 答案
F
fix bug  
feilong 已提交
23

每日一练社区's avatar
每日一练社区 已提交
24
```c
每日一练社区's avatar
每日一练社区 已提交
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
class Twitter
{
public:
    /** Initialize your data structure here. */
    Twitter()
    {
    }

    /** Compose a new tweet. */
    void postTweet(int userId, int tweetId)
    {
        tweets[userId].push_back(make_pair(time++, 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)
    {
        vector<int> userIds({userId});
        if (following.find(userId) != following.end())
        {
            userIds.insert(userIds.begin(), following[userId].begin(), following[userId].end());
        }

        vector<int> index(userIds.size());
        for (int i = 0; i < userIds.size(); ++i)
        {
            index[i] = tweets[userIds[i]].size();
        }

        vector<int> res;
        while (res.size() < 10)
        {
            int mxi = 0, mxtime = INT_MIN, mxTweet = 0;
            for (int i = 0; i < index.size(); ++i)
            {
                int idx = index[i];
                if (idx > 0)
                {
                    int ui = userIds[i];
                    int time = tweets[ui][idx].first;
                    if (time > mxtime)
                    {
                        mxi = i;
                        mxtime = time;
                        mxTweet = tweets[ui][idx].second;
                    }
                }
            }

            if (mxtime == INT_MIN)
            {
                break;
            }

            ++index[mxi];
            res.push_back(mxTweet);
        }

        return res;
    }

    /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
    void follow(int followerId, int followeeId)
    {
        if (followerId != followeeId)
        {
            following[followerId].insert(followeeId);
        }
    }

    /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
    void unfollow(int followerId, int followeeId)
    {
        if (following.find(followerId) == following.end())
        {
            return;
        }
        following[followerId].erase(followeeId);
        if (following[followerId].empty())
        {
            following.erase(followerId);
        }
    }

private:
    int time{0};
    unordered_map<int, unordered_set<int>> following;
    unordered_map<int, vector<pair<int, int>>> tweets;
};
/**
 * 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);
 */

```

每日一练社区's avatar
每日一练社区 已提交
125
## 选项
F
fix bug  
feilong 已提交
126

每日一练社区's avatar
每日一练社区 已提交
127
### A
F
fix bug  
feilong 已提交
128

每日一练社区's avatar
每日一练社区 已提交
129
```c
每日一练社区's avatar
每日一练社区 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
class Twitter
{
private:
    list<pair<int, int>> twitterNews;
    map<int, map<int, bool>> followMap;

public:
    /** Initialize your data structure here. */
    Twitter()
    {
    }

    /** Compose a new tweet. */
    void postTweet(int userId, int tweetId)
    {

        twitterNews.insert(twitterNews.begin(), pair<int, int>(userId, 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)
    {
        vector<int> result;
        list<pair<int, int>>::iterator it = twitterNews.begin();

        while (it != twitterNews.end() && result.size() < 10)
        {

            if (it->first == userId || followMap[userId][it->first])
            {
                result.push_back(it->second);
            }
            it++;
        }
        return result;
    }

    /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
    void follow(int followerId, int followeeId)
    {
        followMap[followerId][followeeId] = true;
    }

    /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
    void unfollow(int followerId, int followeeId)
    {
        followMap[followerId][followeeId] = false;
    }
};

/**
 * 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);
 */

```

### B
F
fix bug  
feilong 已提交
192

每日一练社区's avatar
每日一练社区 已提交
193
```c
每日一练社区's avatar
每日一练社区 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
class Twitter
{
public:
    /** Initialize your data structure here. */
    Twitter()
    {
    }

    /** Compose a new tweet. */
    void postTweet(int userId, int tweetId)
    {
        context.push_back(make_pair(userId, 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)
    {
        int n = context.size();
        int count = 0;
        vector<int> res;
        int k = n - 1;
        while (count < 10 && k >= 0)
        {
            auto it = context[k];
            if (it.first == userId || tmp[make_pair(userId, it.first)])
            {
                res.push_back(context[k].second);
                count++;
            }
            k--;
        }
        return res;
    }

    /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
    void follow(int followerId, int followeeId)
    {
        tmp[make_pair(followerId, followeeId)] = 1;
    }

    /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
    void unfollow(int followerId, int followeeId)
    {
        tmp[make_pair(followerId, followeeId)] = 0;
    }

private:
    map<pair<int, int>, int> tmp;
    vector<pair<int, int>> context;
};

/**
 * 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);
 */

```

### C
F
fix bug  
feilong 已提交
257

每日一练社区's avatar
每日一练社区 已提交
258
```c
每日一练社区's avatar
每日一练社区 已提交
259
class Twitter {
每日一练社区's avatar
每日一练社区 已提交
260
public:
每日一练社区's avatar
每日一练社区 已提交
261 262 263
    unordered_map<int,unordered_set<int>> user;
    unordered_map<int,int> tweetUser;
    vector<int> list;
每日一练社区's avatar
每日一练社区 已提交
264
    /** Initialize your data structure here. */
每日一练社区's avatar
每日一练社区 已提交
265
    Twitter() {
每日一练社区's avatar
每日一练社区 已提交
266

每日一练社区's avatar
每日一练社区 已提交
267 268
    }
    
每日一练社区's avatar
每日一练社区 已提交
269
    /** Compose a new tweet. */
每日一练社区's avatar
每日一练社区 已提交
270 271 272
    void postTweet(int userId, int tweetId) {
        list.push_back(tweetId);
        tweetUser[tweetId] = userId;
每日一练社区's avatar
每日一练社区 已提交
273
    }
每日一练社区's avatar
每日一练社区 已提交
274
    
每日一练社区's avatar
每日一练社区 已提交
275
    /** 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. */
每日一练社区's avatar
每日一练社区 已提交
276 277 278 279 280 281 282
    vector<int> getNewsFeed(int userId) {
        vector<int> result;
        int num=0;
        for(int i=list.size()-1; i>=0&&num<10; i--){
            if(tweetUser[list[i]]==userId || user[userId].find(tweetUser[list[i]]) != user[userId].end()){		//第一个条件是判断是不是自己发送的推特,第二个条件是判断是不是关注的人发送的推特
                result.push_back(list[i]);
                num++;
每日一练社区's avatar
每日一练社区 已提交
283 284
            }
        }
每日一练社区's avatar
每日一练社区 已提交
285
        return result;
每日一练社区's avatar
每日一练社区 已提交
286
    }
每日一练社区's avatar
每日一练社区 已提交
287
    
每日一练社区's avatar
每日一练社区 已提交
288
    /** Follower follows a followee. If the operation is invalid, it should be a no-op. */
每日一练社区's avatar
每日一练社区 已提交
289 290
    void follow(int followerId, int followeeId) {
        user[followerId].insert(followeeId);
每日一练社区's avatar
每日一练社区 已提交
291
    }
每日一练社区's avatar
每日一练社区 已提交
292
    
每日一练社区's avatar
每日一练社区 已提交
293
    /** Follower unfollows a followee. If the operation is invalid, it should be a no-op. */
每日一练社区's avatar
每日一练社区 已提交
294 295
    void unfollow(int followerId, int followeeId) {
        user[followerId].erase(followeeId);
每日一练社区's avatar
每日一练社区 已提交
296 297 298 299 300 301 302 303 304 305 306 307
    }
};

/**
 * 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);
 */
```