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
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <iostream>
#include <algorithm>
#include <utility>
#include <math.h>
#include <vector>
#include <queue>
#define MAXN 200005
using namespace std;

vector <int> G[MAXN];
int V,E,d;
bool odw[MAXN] = {false};
bool odw2[MAXN] = {false};
bool ok[MAXN];
int edg[MAXN];
vector <int> w;


void wczytaj(){
cin>>V>>E>>d;
for(int i=0; i<E ; i++)
    {
        int a,b;
        cin>>a>>b;

        ok[a]=true; ok[b]= true;
        edg[a]++; edg[b]++;

        G[a].push_back(b);
        G[b].push_back(a);
    }
}

void bfs(int n)
{
    odw[n] = true;
    queue<int> Q;
    Q.push(n);

    while(!Q.empty())
    {
        int w = Q.front(); Q.pop();
        if(edg[w]<d)
            for(int i=0; i<G[w].size() ; i++)
                {
                    int k=G[w][i];
                    edg[k]--;
                    if(!odw[k] && edg[k]<d)
                    {
                        odw[k]= true;
                        Q.push(k);
                    }
                }
    }
}
void bfs2(int n)
{
    odw2[n] = true;
    queue<int> Q;
    Q.push(n);
    priority_queue <int> pq1;
    while(!Q.empty())
    {
        int w = Q.front(); Q.pop();
        pq1.push(w);
        if(edg[w]>=d)
            for(int i=0; i<G[w].size() ; i++)
                {
                    int k=G[w][i];
                    if(!odw2[k] && edg[k]>=d)
                    {
                        odw2[k]= true;
                        Q.push(k);
                    }
                }
    }
    if(pq1.size() > w.size()){
        w.clear();
        while(!pq1.empty()){w.push_back(pq1.top()); pq1.pop();}
    }
}





int main(){
    ios_base::sync_with_stdio(false);
wczytaj();

    for(int i=1;i<=V;i++)
    {
        if(!odw[i] && edg[i]<d)
        {
           bfs(i);
        }
    }
    bool t=false;
for(int i=1;i<=V;i++)
    {
        if(!odw[i] && edg[i]>=d)
        {
            t=true; bfs2(i);
        }
    }
if(!t){ cout<<"NIE"<<endl; }else{
    cout<<w.size()<<endl;
    for(int i=w.size()-1;i>=0;i--){
        cout<<w[i]<<" ";
    }
}

}