1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include<bits/stdc++.h>
using namespace std;
vector<int> kraw[200001];
vector<int> rozw, r;
int roz[200001];
int odw[200001];
int ro;
int wyn=0;
queue <int> kolejka;
void dfs(int x)
{
    r.push_back(x);
    ro++;
    odw[x]=1;
    for(vector<int> :: iterator it=kraw[x].begin(); it!=kraw[x].end(); it++)
    {
        if(odw[*it]==0)
            dfs(*it);
    }
}
int main(){
    int n,m,d;
    scanf("%d%d%d", &n, &m, &d);
    for(int i=1; i<=m; i++)
    {
        int a,b;
        scanf("%d%d", &a, &b);
        kraw[a].push_back(b);
        kraw[b].push_back(a);
        roz[a]++;
        roz[b]++;
    }
    for(int i=1; i<=n; i++)
        if(roz[i]<d)
        {
            kolejka.push(i);
            odw[i]=1;
        }
    while(!kolejka.empty())
    {
        int x=kolejka.front();
        kolejka.pop();
        for(vector<int> :: iterator it=kraw[x].begin(); it!=kraw[x].end(); it++)
        {
            roz[*it]--;
            if(roz[*it]<d && odw[*it]==0)
            {
                odw[*it]=1;
                kolejka.push(*it);
            }
        }
    }
    for(int i=1; i<=n; i++)
        if(odw[i]==0)
        {
            ro=0;
            r.clear();
            dfs(i);
            if(wyn<ro){
                rozw=r;
                wyn=ro;
            }
        }
    if(wyn==0)
        printf("NIE\n");
    else
    {
        printf("%d\n", wyn);
        sort(rozw.begin(), rozw.end());
        for(int i=0; i<rozw.size(); i++)
            printf("%d ", rozw[i]);
    }
}