首页 > 其他分享 >1076 Forwards on Weibo

1076 Forwards on Weibo

时间:2023-05-14 11:00:42浏览次数:37  
标签:Weibo Forwards temp 1076 int fans followers user que

题目:

 

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:

7 3
3 2 3 4
0
2 5 6
2 3 1
2 3 4
1 4
1 5
2 2 6
 

Sample Output:

4
5

 

 

代码:

#include<stdio.h>
#include<iostream>
#include<queue>
using namespace std;
int n,l,m,k,nmax = 0;
vector<vector<int>> fans;
void bfs(int id){
    queue<int> que;
    que.push(id);
    vector<bool> visited(1005, false);
    vector<int> ranks(1005, 0);
    visited[id] = true;
    while(!que.empty()){
         int temp = que.front();
         que.pop();
         for(int i = 0; i < fans[temp].size(); i++){
             if(ranks[temp] >= l) break;
             if(!visited[fans[temp][i]]){
                 ranks[fans[temp][i]] = ranks[temp] + 1;
                 nmax++;
                 visited[fans[temp][i]] = true;
                 que.push(fans[temp][i]);
             }
         }
    }
}
int main(){
    scanf("%d %d", &n, &l);
    fans.resize(n + 1);
    for(int i = 1; i <= n; i++){
        scanf("%d", &m);
        for(int j = 0; j < m; j++){
            int temp;
            scanf("%d", &temp);
            fans[temp].push_back(i);
        }
    }
    scanf("%d", &k);
    for(int w = 0; w < k; w++){
        int id;
        scanf("%d", &id);
        bfs(id);
        printf("%d\n", nmax);
        nmax = 0;
    }
    return 0;
}

 

 

注意:

不要漏了 

fans.resize(n + 1);

否则会发生段错误


标签:Weibo,Forwards,temp,1076,int,fans,followers,user,que
From: https://www.cnblogs.com/yccy/p/17398896.html

相关文章

  • COSC1076 Vending机器
    COSC1076|Semester12023AdvancedProgrammingTechniquesAssignment2VendingMachineAssessmentType:Bothgroupandindividualassessments.Weight:40%ofthefinalcoursemarkDueDate:23:59,Friday26May2023(Notethatthereisalsoagroupdemonstrat......
  • Add Again UVA - 11076
     defineS,itissumofallpossiblepermutationsofagivensetofdigits.Forexample,ifthedigitsare<123>,thensixpossiblepermutationsare<123>,<132>,<213>,<231>,<312>,<321>andthesumofthemis......
  • 力扣1076(MySQL)-员工项目Ⅱ(简单)
    题目:编写一个SQL查询,报告所有雇员最多的项目。查询结果格式如下所示:  解题思路:方法一:将两个表联结,以project_id进行分组,统计员工数降序排序,然后筛选出第一条数据。1selectproject_id2fromprojecta3joinemployeeb4ona.employee_id=b.employee_id5group......
  • PAT Basic 1076. Wifi密码
    PATBasic1076.Wifi密码1.题目描述:下面是微博上流传的一张照片:“各位亲爱的同学们,鉴于大家有时需要使用wifi,又怕耽误亲们的学习,现将wifi密码设置为下列数学题答案:A-1;B-2;C-3;D-4;请同学们自己作答,每两日一换。谢谢合作!!~”——老师们为了促进学生学习也是拼了……本题就要求......
  • HDOJ1076 An Easy Task
    AnEasyTaskTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:65536/32768K(Java/Others)TotalSubmission(s):24613    AcceptedSubmission(s):1......
  • 1076 Wifi密码——15分
    下面是微博上流传的一张照片:“各位亲爱的同学们,鉴于大家有时需要使用wifi,又怕耽误亲们的学习,现将wifi密码设置为下列数学题答案:A-1;B-2;C-3;D-4;请同学们自己作答,每两日一换。......