PAT A1076 Forward on Weibo

3450 단어 PAT미완성
시간 제한: 3000ms 메모리 제한: 64MB 코드 길이 제한: 16KB
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

좋은 웹페이지 즐겨찾기