#include #include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; #define rep(i, n) for(int i = 0; i < (n); i++) template using vi = vector; template using vii = vector>; template using viii = vector>; using P = pair; void chmin(ll & x, ll y) { x = min(x, y); } struct mint { const long long mod = 998244353; long long x; mint(long long x_ = 0) : x((x_% mod + mod) % mod) {} mint& operator+=(const mint& other) { x += other.x; if (x >= mod) x -= mod; return *this; } mint& operator-=(const mint& other) { x -= other.x; if (x < 0) x += mod; return *this; } mint& operator*=(const mint& other) { x *= other.x; x %= mod; return *this; } mint& operator+=(const long long n) { return *this += mint(n); } mint& operator-=(const long long n) { return *this -= mint(n); } mint& operator*=(const long long n) { return *this *= mint(n); } mint& operator=(const mint& other) { x = other.x; return *this; } mint& operator=(const long long n) { x = n % mod; return *this; } bool operator==(const mint& other) const { return x == other.x; } bool operator!=(const mint& other) const { return x != other.x; } mint operator-() const { mint res(mod - x); return res; } mint operator+(const mint& other) const { mint res(x); return res += other; } mint operator-(const mint& other) const { mint res(x); return res -= other; } mint operator*(const mint& other) const { mint res(x); return res *= other; } mint operator+(const long long n) const { mint res(x); mint other(n); return res += other; } mint operator-(const long long n) const { mint res(x); mint other(n); return res -= other; } mint operator*(const long long n) const { mint res(x); mint other(n); return res *= other; } mint pow(long long n) const { if (n == 0) return mint(1); mint res = pow(n / 2); res *= res; if (n % 2) res *= *this; return res; } mint inv() const { return pow(mod - 2); } mint& operator/=(const mint& other) { *this *= other.inv(); return *this; } mint operator/(const mint& other) const { mint res(x); return res /= other; } }; struct status { int to, cost; }; using pii = pair; int main() { int n, q; cin >> n >> q; vii to(n); rep(i, q) { int a, b, c; cin >> a >> b >> c; a--, b--; to[a].push_back({ b, c }); to[b].push_back({ a, c }); } vi dist(n, -1); mint ans = 1; rep(i, n) { if (dist[i] >= 0) continue; deque dq; dq.push_front(i); dist[i] = 0; while (!dq.empty()) { int v = dq.front(); dq.pop_front(); for (status nv : to[v]) { if (dist[nv.to] >= 0) { if ((dist[nv.to] - dist[v] - nv.cost) % 2 != 0) { cout << 0 << endl; return 0; } else continue; } else { dist[nv.to] = dist[v] + nv.cost; if (nv.cost == 0) dq.push_front(nv.to); else dq.push_back(nv.to); } } } ans *= 2; } cout << ans.x << endl; return 0; }