SDUT 7-4 帅到没朋友 (20分)

SDUT 7-4 帅到没朋友 (20分)_第1张图片
SDUT 7-4 帅到没朋友 (20分)_第2张图片

#include 
#include 
#include 
#include 
using namespace std;
int main()
{
     
    int n,m,k,i,c;
    int a[100010]= {
     0};
    cin>>n;
    while(n--)
    {
     
        cin>>k;
        for(i=0; i<k; i++)
        {
     
            cin>>c;
            if(k>1)
                a[c]++;
        }
    }
    cin>>m;
    int flag=0;
    while(m--)
    {
     
        cin>>c;
        if(a[c]==0)
        {
     
            a[c]=1;
            if(flag==0)
                printf("%05d",c);
            else
                printf(" %05d",c);
            flag=1;
        }
    }
    if(flag==0)
        cout<<"No one is handsome";
    return 0;
}

你可能感兴趣的:(SDUT 7-4 帅到没朋友 (20分))