#include #include using mint = atcoder::modint998244353; using namespace std; int main() { int n, m; cin >> n >> m; atcoder::dsu uf(n); vector>> g(n); for (int i = 0; i < m; i++){ int a, b, c; cin >> a >> b >> c; a--; b--; g[a].push_back({b, c}); uf.merge(a, b); } mint ans = 1; vector f(n, -1); vector f2(n, -1); for (auto s : uf.groups()){ int c = 0; queue q; q.push(s[0]); f[s[0]] = 0; bool ok = true; while (!q.empty()){ int v = q.front(); q.pop(); for (auto p : g[v]){ if (f[p.first] == -1){ f[p.first] = f[v] ^ p.second; q.push(p.first); }else{ if (f[p.first] != (f[v] ^ p.second)){ ok = false; break; } } } } if (ok){ c++; } while (!q.empty()){ q.pop(); } q.push(s[0]); f2[s[0]] = 1; ok = true; while (!q.empty()){ int v = q.front(); q.pop(); for (auto p : g[v]){ if (f2[p.first] == -1){ f2[p.first] = f2[v] ^ p.second; q.push(p.first); }else{ if (f2[p.first] != (f2[v] ^ p.second)){ ok = false; break; } } } } if (ok){ c++; } ans *= c; } cout << ans.val() << endl; }