• C. News Distribution(并查集)


    In some social network, there are nn users communicating with each other in mm groups of friends. Let's analyze the process of distributing some news between users.

    Initially, some user xx receives the news from some source. Then he or she sends the news to his or her friends (two users are friends if there is at least one group such that both of them belong to this group). Friends continue sending the news to their friends, and so on. The process ends when there is no pair of friends such that one of them knows the news, and another one doesn't know.

    For each user xx you have to determine what is the number of users that will know the news if initially only user xx starts distributing it.

    Input

    The first line contains two integers nn and mm (1n,m51051≤n,m≤5⋅105) — the number of users and the number of groups of friends, respectively.

    Then mm lines follow, each describing a group of friends. The ii-th line begins with integer kiki (0kin0≤ki≤n) — the number of users in the ii-th group. Then kiki distinct integers follow, denoting the users belonging to the ii-th group.

    It is guaranteed that i=1mki5105∑i=1mki≤5⋅105.

    Output

    Print nn integers. The ii-th integer should be equal to the number of users that will know the news if user ii starts distributing it.

    Example
    input
    Copy
    7 5
    3 2 5 4
    0
    2 1 2
    1 1
    2 6 7
    
    output
    Copy
    4 4 1 4 4 2 2 

     代码:

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #include<queue>
    #include<stack>
    #include<set>
    #include<vector>
    #include<map>
    #include<cmath>
    
    const int maxn=5e5+5;
    typedef long long ll;
    using namespace std;
    int pre[maxn];
    int find(int x)
    {
        if(x==pre[x])
        {
            return x;
        }
        else
        {
            return pre[x]=find(pre[x]);
        }
    }
    void Merge(int x,int y)
    {
        int xx=find(x);
        int yy=find(y);
        if(xx!=yy)
        {
            pre[xx]=yy;
        }
        
    }
    int a[maxn];
    int main()
    {
        int n,m;
        cin>>n>>m;
        int x;
        for(int t=1;t<=n;t++)
        {
            pre[t]=t;
        }
        int s1,s2;
        for(int t=0;t<m;t++)
        {
            scanf("%d",&x);
            if(x!=0)
            scanf("%d",&s1);
            for(int j=1;j<x;j++)
            {
                scanf("%d",&s2);
                Merge(s1,s2);
                s1=s2;
            }
        }
    
        int ans=0;
        memset(a,0,sizeof(a));
        for(int t=1;t<=n;t++)
        {
        
            a[find(t)]++;
        }
        for(int t=1;t<=n;t++)
        {
            printf("%d ",a[find(t)]);
        }
    
        
        return 0;
    }
  • 相关阅读:
    番茄工作法
    Linux命令学习chroot和chmode
    ejabberd与XMPP
    【转载】Understanding When to use RabbitMQ or Apache Kafka
    Activiti的ACT_GE_PROPERTY表初始化
    Spring transaction与EJB transaction的关系
    mysql & java & spring transaction isolation level
    Drools解决积分问题
    Rendertron:谷歌 Chrome 新的 headless 模式又贡献了一个新的技巧
    LDAP的前世今生
  • 原文地址:https://www.cnblogs.com/Staceyacm/p/10877798.html
Copyright © 2020-2023  润新知