• A1076 Forwards on Weibo(30分)PAT 甲级(Advanced Level) Practice(C++)满分题解【BFS】


    Weibo is known as the Chinese version of Twitter. One user on Weibo may have many followers, and may follow many other users as well. Hence a social network is formed with followers relations. When a user makes a post on Weibo, all his/her followers can view and forward his/her post, which can then be forwarded again by their followers. Now given a social network, you are supposed to calculate the maximum potential amount of forwards for any specific user, assuming that only L levels of indirect followers are counted.

    Input Specification:

    Each input file contains one test case. For each case, the first line contains 2 positive integers: N (≤1000), the number of users; and L (≤6), the number of levels of indirect followers that are counted. Hence it is assumed that all the users are numbered from 1 to N. Then N lines follow, each in the format:

    M[i] user_list[i]
    

    where M[i] (≤100) is the total number of people that user[i] follows; and user_list[i] is a list of the M[i] users that followed by user[i]. It is guaranteed that no one can follow oneself. All the numbers are separated by a space.

    Then finally a positive K is given, followed by K UserID's for query.

    Output Specification:

    For each UserID, you are supposed to print in one line the maximum potential amount of forwards this user can trigger, assuming that everyone who can view the initial post will forward it once, and that only L levels of indirect followers are counted.

    Sample Input:

    1. 7 3
    2. 3 2 3 4
    3. 0
    4. 2 5 6
    5. 2 3 1
    6. 2 3 4
    7. 1 4
    8. 1 5
    9. 2 2 6

    Sample Output:

    1. 4
    2. 5

    题意分析:

    题目给出的是每个用户关注的人,所以在储存到数组时应该转换为每个人的粉丝群体,这样才能直接表示一个人可以带来的转发量,然后从查询用户为起点,广度优先遍历该用户的粉丝列表,然后粉丝列表的粉丝列表,当层数超过L后就不计算了。

    代码如下:

    1. #include
    2. using namespace std;
    3. int N, L,qn,quid,maxForwards;
    4. vectorint>> M;//记录用户i的粉丝
    5. vector<bool> isvisit;
    6. int bfs(int s)
    7. {
    8. queue<int> que;
    9. que.push(s);
    10. isvisit[s] = true;
    11. int level = -1, last = s, tail;
    12. int count = -1;
    13. while (que.empty()==false)
    14. {
    15. int v = que.front();
    16. que.pop();
    17. for (int i = 0; i < M[v].size(); i++)
    18. {
    19. if (isvisit[M[v][i]] == false) {
    20. isvisit[M[v][i]] = true;
    21. que.push(M[v][i]);
    22. tail = M[v][i];
    23. }
    24. }
    25. count++;
    26. if (last == v)
    27. {
    28. level++;
    29. last = tail;
    30. }
    31. if (level == L)
    32. return count;
    33. }
    34. return count;
    35. }
    36. int main()
    37. {
    38. cin >> N >> L;
    39. M.resize(N + 1);
    40. isvisit.resize(N + 1);
    41. int num,uid;
    42. for (int i = 1; i <= N; i++)
    43. {
    44. cin >> num;
    45. for (int j = 1; j <= num; j++) {
    46. cin >> uid;
    47. M[uid].push_back(i);
    48. }
    49. }
    50. cin >> qn;
    51. for (int i = 0; i < qn; i++) {
    52. cin >> quid;
    53. maxForwards = 0;
    54. fill(isvisit.begin(), isvisit.end(), false);
    55. /*for (int j = 0; j < M[quid].size(); j++) {
    56. dfs(M[quid][j], 0, maxForwards);
    57. }*/
    58. cout << bfs(quid)<
    59. }
    60. return 0;
    61. }

    运行结果如下:

     

  • 相关阅读:
    VUE核心
    Unescaped & or nonterminated character/entity reference 报错-IDEA
    Unity技术手册-初识编辑器(上)
    大数据复习-生产调优
    支持向量机基本原理,Libsvm工具箱详细介绍,基于支持向量机SVM的遥感图像分类
    TINA9仿真那些事
    vs+opencv+QT调试程序
    金仓数据库 KingbaseGIS 使用手册(6.5. 几何对象编辑函数)
    Python 2.7 requests库POST请求体中有中文的处理方法
    mysql binlog日志详解及主从复制原理
  • 原文地址:https://blog.csdn.net/qq_47677800/article/details/125991177