PAT A1076 Forward on Weibo
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 triger, 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
대략적인 제목:
웨이보는 중국에서 트위터와 유사하다.사용자는 웨이보에 많은 팬이 있을 수 있고 다른 사용자들을 주목할 수도 있다.소셜네트워크서비스(SNS)는 팬 관계를 바탕으로 한 것이다. 한 사용자가 웨이보를 발표하면 그의 모든 팬들이 그의 웨이보를 보고 전송할 수 있다. 이 웨이보는 다른 다음 급 팬들에게도 전송될 수 있다.현재 소셜네트워크서비스(SNS)를 제공하는데 L층 팬덤 범위 내에서 누군가가 웨이보를 발표한 팬의 최대 전파 범위를 계산해 보세요.(L 레이어 포함)
입력 형식:
현재 한 줄을 제시하면 모두 N 사람이 있음을 나타낸다. 전송 제한 최대 층수는 L(그중 N<=1000, L<=6)이다.
코드 초기 단계:
#include
#include
#include
#include
using namespace std;
const int maxn=1010;
struct Node{
int id;
int layer;
};
vector Adj[maxn];
bool inq[maxn] = {false};
//to bfs the graph and calculate the amount of user can triger
int BFS(int Su, int L){//start user, layer
queue q;
int numForward = 0;//number of forward
Node user;//the first user
user.id=Su; user.layer=0;
q.push(user); //push and record
inq[user.id]=true;
while(!q.empty()){
Node topNode = q.front();
q.pop();
int u = topNode.id;
for(int i=0; i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT A 1049. Counting Ones (30)제목 The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal fo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.