PAT 甲级 1076 Forwards on Weibo (30 分)

题目描述

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.

输入

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.

输出

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.

思路

首先要转换一下,题目给的是每个人关注的,转换成一个人他所有的粉丝,然后之后bfs即可

代码

#include<cstdio>
#include<queue>
#include<iostream>
#include<algorithm>
#include<stdlib.h>
#include<string.h>
using namespace std;
vector<int> per[1005];
int hum[1005][1005];
int vis[1005] = {
    
     0 };
int cur_le[1005] = {
    
     0 };
int N, L;
int bfs(int s)
{
    
    
	int level = 0;
	queue<int> q;
	cur_le[s] = 0;
	q.push(s);
	vis[s] = 1;
	int number = 0;
	while (!q.empty())
	{
    
    
		
		int cur = q.front();
		int level = cur_le[cur]+1;
		if (level > L)
		{
    
    
			q.pop();
			continue;
		}
		q.pop();
		for (int i = 0; i < per[cur].size(); i++)
		{
    
    
			if (vis[per[cur][i]] == 0)
			{
    
    
				q.push(per[cur][i]);
				vis[per[cur][i]] = 1;
				cur_le[per[cur][i]] = level;
				number++;
			}
		}
	}
	return number;
}
int main()
{
    
    
	cin >> N >> L;
	for (int i = 1; i <= N; i++)
	{
    
    
		cin >> hum[i][0];
		for (int j = 1; j <= hum[i][0]; j++)
		{
    
    
			cin >> hum[i][j];
			per[hum[i][j]].push_back(i);
		}
	}
	int number;
	cin >> number;
	for (int i = 0; i < number; i++)
	{
    
    
		int h;
		cin >> h;
		memset(vis, 0, sizeof(vis));
		memset(cur_le, 0, sizeof(cur_le));
		printf("%d\n",bfs(h));
	}
}

Guess you like

Origin blog.csdn.net/qq_45478482/article/details/120082879