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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
//Autor: Mateusz Wasylkiewicz
//Zawody: Potyczki Algorytmiczne 2015
//Strona: http://potyczki.mimuw.edu.pl/
//Zadanie: Mistrzostwa, runda 2B
//Czas: Theta(n+m)
#include <bits/stdc++.h>
using namespace std;

typedef vector<int> VI;
#define REP(x, n) for (int x = 0; x < (n); x++)
#define SIZE(x) int((x).size())
#define PB push_back

const int MAX = 200100;

namespace G
{
	struct V : VI
	{
		bool dobry;
		int st, skl;
	};
	
	int n, d;
	V g[MAX];
	
	inline void dodaj_krawedz(int a, int b)
	{
		g[a].PB(b);
		g[b].PB(a);
	}
	
	queue<int> do_usuniecia;
	
	void wypelnij_st()
	{
		REP(v, n)
		{
			g[v].dobry = true;
			g[v].st = SIZE(g[v]);
			if (g[v].st < d)
			{
				do_usuniecia.push(v);
				g[v].dobry = false;
			}
		}
	}
	
	void usun_zle()
	{
		while (! do_usuniecia.empty())
		{
			int v = do_usuniecia.front();
			do_usuniecia.pop();
			REP(i, SIZE(g[v]))
			{
				int u = g[v][i];
				if (g[u].st == d)
				{
					do_usuniecia.push(u);
					g[u].dobry = false;
				}
				g[u].st--;
			}
		}
	}
	
	int LICZ, czas;
	
	void dfs(int v)
	{
		g[v].skl = czas;
		LICZ++;
		REP(i, SIZE(g[v]))
		{
			int u = g[v][i];
			if (g[u].skl == -1)
				dfs(u);
		}
	}
	
	int najwieksza_skladowa()
	{
		REP(i, n)
			g[i].skl = (g[i].dobry ? -1 : -2);
		int maks_skl = -1, maks_licz = 0;
		czas = 0;
		REP(i, n)
			if (g[i].skl == -1)
			{
				LICZ = 0;
				dfs(i);
				if (maks_licz < LICZ)
				{
					maks_licz = LICZ;
					maks_skl = czas;
				}
				czas++;
			}
		return maks_skl;
	}
	
	int zlicz(int skl)
	{
		int licz = 0;
		REP(i, n)
			if (g[i].skl == skl)
				licz++;
		return licz;
	}
	
	void wypisz_skladowa(int skl)
	{
		REP(i, n)
			if (g[i].skl == skl)
				cout << i + 1 << ' ';
		cout << '\n';
	}
	
	void rozwiaz()
	{
		wypelnij_st();
		usun_zle();
		int skl = najwieksza_skladowa();
		if (skl == -1)
			cout << "NIE\n";
		else
		{
			cout << zlicz(skl) << '\n';
			wypisz_skladowa(skl);
		}
	}
};

void wczytaj_dane()
{
	int m;
	cin >> G::n >> m >> G::d;
	while (m--)
	{
		int a, b;
		cin >> a >> b;
		G::dodaj_krawedz(--a, --b);
	}
}

void zrob_test()
{
	wczytaj_dane();
	G::rozwiaz();
}

int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	zrob_test();
	return 0;
}