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
#include<bits/stdc++.h>
using namespace std;

constexpr int N = 1000;

class Solver {
  int n;
  bitset<N> niePrzed[N];
  vector<int> graf[N];
  int ans[N];
  bool exist;
  
//   void load(istream &is) {
//     int m;
//     is >> n >> m;
//     int x, y; char c;
//     for(int i = 0; i < m; ++i) {
//       is >> x >> y >> c;
//       --x; --y;
//       if(c == 'T') {
// 	niePrzed[x][y] = 1;
// 	graf[x].push_back(y);
// 	graf[y].push_back(x);
//       }
//       else {
// 	niePrzed[y][x] = 1;
//       }
//     }
//   }
  
  void load() {
    int m;
    scanf("%d %d", &n, &m);
    int x, y; char c;
    for(int i = 0; i < m; ++i) {
      scanf("%d %d %c\n", &x, &y, &c);
      --x; --y;
      if(c == 'T') {
	niePrzed[x][y] = 1;
	graf[x].push_back(y);
	graf[y].push_back(x);
      }
      else {
	niePrzed[y][x] = 1;
      }
    }
  }
  
  bitset<N> initMask() {
    bitset<N> mask;
    for(int i = 0; i < n; ++i)
      mask[i] = 1;
    for(int i = n; i < N; ++i)
      mask[i] = 0;
    return mask;
  }
  
  void dfs(int no, bitset<N>& valid, bitset<N>& visited) {
    if(visited[no])
      return;
    
    visited[no] = 1;
    
    for(int sas: graf[no])
      if(valid[sas])
	dfs(sas, valid, visited);
  } 
  
  int calc(bitset<N> mask) {
    int root = -1;
    for(int i = 0; i < n; ++i)
      if(mask[i])
	if((niePrzed[i] & mask).none()) {
	  root = i;
	  break;
	}
	
    if(root < 0)
      return -1;
    
    mask[root] = 0;
    ans[root] = -1;
    
    int nroot;
    bitset<N> sas;
    for(int i = 0; i < n; ++i)
      if(mask[i]) {
	sas.reset();
	dfs(i, mask, sas);
	mask ^= sas;
	nroot = calc(sas);
	if(nroot < 0)
	  return -1;
	ans[nroot] = root;
      }
      
    return root;
  }
  
public:
//   void solve(istream &is) {
//     load(is);
//     exist = (calc(initMask()) >= 0);
//   }
  
  void solve() {
    load();
    exist = (calc(initMask()) >= 0);  
  }
  
//   void out(ostream &os) {
//     if(exist) {
//       for(int i = 0; i < n; ++i)
// 	os << (ans[i] + 1) << endl;
//     }
//     else {
//       os << "NIE" << endl;
//     }
//   }
  
  void out() {
    if(exist) {
      for(int i = 0; i < n; ++i)
	printf("%d\n", ans[i] + 1);
    }
    else {
      printf("NIE\n");
    }
  }
};

// int _main(istream &is, ostream &os) {
//   Solver solver;
//   solver.solve(is);
//   solver.out(os);
// }

// int _testmain() {
//   for(int i = 1; i <= 176; ++i) {
//     string name = "reo_new" + to_string(i) + ".in";
//     ifstream is(name);
//     stringstream os;
//     
//     const clock_t begin_time = clock();
//     _main(is, os);
//     std::cout << float( clock () - begin_time ) /  CLOCKS_PER_SEC << endl;    
//     
//     string answer;
//     os >> answer;
//     
//     is.close();
//     
//     name = "reo_new" + to_string(i) + ".out";
//     ifstream iss(name);
//     
//     string result;
//     iss >> result;
//     iss.close();
//     
//     if(answer != result)
//       cerr << "WA " << i << endl;
//   }
// }

int main() {
  Solver solver;
  solver.solve();
  solver.out();
}