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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <sstream>
#include <set>
#include <map>
#include <vector>
#include <list>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <string>
#include <queue>
#include <bitset>		//UWAGA - w czasie kompilacji musi byc znany rozmiar wektora - nie mozna go zmienic
#include <cassert>
#include <iomanip>		//do setprecision
#include <ctime>
#include <complex>
using namespace std;

#define FOR(i,b,e) for(int i=(b);i<(e);++i)
#define FORQ(i,b,e) for(int i=(b);i<=(e);++i)
#define FORD(i,b,e) for(int i=(b)-1;i>=(e);--i)
#define REP(x, n) for(int x = 0; x < (n); ++x)

#define ST first
#define ND second
#define PB push_back
#define MP make_pair
#define LL long long
#define ULL unsigned LL
#define LD long double

const double pi = 3.141592653589793238462643383279502884197169399375105820974944592307816406286208998628034825342;

#define MR 1010

vector < int > g[MR], pop[MR];

bool t[MR][MR], bad[MR][MR], ordered[MR], reachable[MR][MR][2];

int srt, topo[MR], p[MR], rep[MR], posT[MR];

bool cykl;
int done[MR];

void topoS(int nr)
{
	done[nr] = 1;
	REP(i, g[nr].size())
		if (done[g[nr][i]] == 1)
		{
			cykl = 1;
			return;
		}
		else if (!done[g[nr][i]])
			topoS(g[nr][i]);

	topo[srt++] = nr;
	done[nr] = 2;
}

int cnt;
void dfs(int nr)
{
	done[nr] = cnt;
	REP(i, g[nr].size())
		if (done[g[nr][i]] != cnt)
			dfs(g[nr][i]);
}

char s[2];

int main()
{
	int n, m;
	scanf("%d%d", &n, &m);
	REP(i, m)
	{
		int a, b;
		scanf("%d%d%s", &a, &b, s); a--; b--;
		if (s[0] == 'T')
		{
			if(!t[a][b])
			g[a].push_back(b);
			t[a][b] = 1;
		}
		else
			bad[a][b] = 1;
	}

	// znajdz korzen
	int root = -1;
	REP(i, n)
	{
		if (g[i].empty())
		{
			bool ok = 1;
			REP(j, n)
				if (bad[j][i])
				{
					ok = 0;
					break;
				}

			if (ok)
			{
				root = i;
				break;
			}
		}
	}

	if(root == -1)
	{
		printf("NIE\n");
		return 0;
	}

	REP(i,n)
		if (!t[i][root] && i != root)
		{
			g[i].push_back(root);
			t[i][root] = 1;
		}

	p[root] = -1;

	REP(i, n)
		if (!done[i])
			topoS(i);

	if (cykl)
	{
		printf("NIE\n");
		return 0;
	}

	// zrob sciezki
	memset(done, 0, 4 * n);
	reverse(topo, topo + n);
	REP(i, n)
	{
		if (!done[topo[i]])
		{
			cnt++;
			dfs(topo[i]);
			vector < int > ord, unord;
			// miedzy kazda para trzeba zrobic kierunek
			// ale wiemy, ze wszystko w ord jest juz zrobione
			// nie powtarzaj pracy
			REP(j, n)
				if (done[j] == cnt)
				{
					if (ordered[j])
						ord.push_back(j);
					else
						unord.push_back(j);
				}
			REP(j, unord.size())FOR(k, j + 1, unord.size())
			{
				int x = unord[j], y = unord[k];
				// zobacz czy bad ustali nam kierunek, lub zrobi sprzecznosc
				if (bad[x][y])
					t[y][x] = 1;
				if (bad[y][x])
					t[x][y] = 1;
				// moze byc tak, ze zaszlo t[x][y] && t[y][x]
				// ale to na koncu wykryjemy
			}
			REP(j, unord.size())REP(k, ord.size())
			{
				int x = unord[j], y = ord[k];
				// zobacz czy bad ustali nam kierunek, lub zrobi sprzecznosc
				if (bad[x][y])
					t[y][x] = 1;
				if (bad[y][x])
					t[x][y] = 1;
			}
			REP(j, unord.size())
				ordered[unord[j]] = 1;
		}
	}

	// wyznacz reachability
	REP(i, n)
		reachable[i][i][0] = 1;
	REP(i, n)REP(j, g[i].size())
		reachable[i][g[i][j]][0] = 1;

	bool prev = 0;
	while (true)
	{
		memset(done, 0, 4 * n);
		// wyznacz domkniecie
		cnt = 1;
		REP(i, n)
		{
			dfs(i);
			REP(j, n)
				if (done[j])
				{
					t[i][j] = 1;
					done[j] = 0;
				}
		}

		REP(i, n)
		{
			g[i].clear();
			pop[i].clear();
		}
		REP(i, n)REP(j, n)
			if (i != j && t[i][j])
			{
				g[i].push_back(j);
				pop[j].push_back(i);
			}

		// posortuj jeszcze raz, zeby wykryc rozne cykle
		srt = 0;
		REP(i, n)
			if (!done[i])
				topoS(i);

		if (cykl)
		{
			printf("NIE\n");
			return 0;
		}

		reverse(topo, topo + n);

		// sprawdz nowe reachability
		bool np = 0;
		REP(i, n)
		{
			int v = topo[i];
			vector<int> stare, nowe;
			REP(j, n)
			{
				reachable[v][j][!prev] = t[v][j];
				if (t[v][j] != reachable[v][j][prev])
				{
					np = 1;
					nowe.push_back(j);
				}
				else if (t[v][j])
					stare.push_back(j);
			}

			REP(j, nowe.size())FOR(k, j + 1, nowe.size())
			{
				int x = nowe[j], y = nowe[k];
				if (bad[x][y])
					t[y][x] = 1;
				if (bad[y][x])
					t[x][y] = 1;
			}
			REP(j, nowe.size())REP(k, stare.size())
			{
				int x = nowe[j], y = stare[k];
				if (bad[x][y])
					t[y][x] = 1;
				if (bad[y][x])
					t[x][y] = 1;
			}
		}

		if (!np)
			break;

		prev = !prev;
	}

	// wyglada na to, ze wszystko jest ok, buduj drzewo

	// zrob sciezki ostatecznie
	memset(done, 0, 4 * n);
	memset(ordered, 0, n);
	REP(i, n)
		posT[topo[i]] = i;
	REP(i, n)
	{
		if (!done[topo[i]])
		{
			cnt++;
			dfs(topo[i]);
			vector < int > ord, unord;
			// miedzy kazda para trzeba zrobic kierunek
			// ale wiemy, ze wszystko w ord jest juz zrobione
			// nie powtarzaj pracy
			REP(j, n)
				if (done[j] == cnt)
				{
					if (ordered[j])
						ord.push_back(j);
					else
						unord.push_back(j);
				}
			REP(j, unord.size())FOR(k, j + 1, unord.size())
			{
				int x = unord[j], y = unord[k];
				if (posT[x] > posT[y])
					swap(x, y);

				// wybierz jeden kierunek, jesli nic nie jest ustalone
				if (!t[x][y] && !t[y][x])
					t[x][y] = 1;
			}
			REP(j, unord.size())REP(k, ord.size())
			{
				int x = unord[j], y = ord[k];
				if (posT[x] > posT[y])
					swap(x, y);

				// wybierz jeden kierunek, jesli nic nie jest ustalone
				if (!t[x][y] && !t[y][x])
					t[x][y] = 1;
			}
			REP(j, unord.size())
				ordered[unord[j]] = 1;
		}
	}

	memset(done, 0, 4 * n);

	REP(i, n)
	{
		g[i].clear();
		pop[i].clear();
	}
	REP(i, n)REP(j, n)
		if (i != j && t[i][j])
		{
			g[i].push_back(j);
			pop[j].push_back(i);
		}

	// posortuj jeszcze raz, zeby wykryc rozne cykle
	srt = 0;
	REP(i, n)
		if (!done[i])
			topoS(i);

	if (cykl)
	{
		printf("NIE\n");
		return 0;
	}

	reverse(topo, topo + n);

	REP(i, n)
		rep[i] = i;
	REP(i, n)
	{
		int akt = topo[i];
		REP(j, pop[akt].size())
		{
			while (rep[pop[akt][j]] != rep[rep[pop[akt][j]]])
				rep[pop[akt][j]] = rep[rep[pop[akt][j]]];
			p[rep[pop[akt][j]]] = akt;
			rep[pop[akt][j]] = akt;
		}
	}

	p[root] = -1;

	REP(i, n)
		printf("%d\n", p[i] + 1);
	//printf("TAK\n");

	return 0;
}