結果

問題 No.2277 Honest or Dishonest ?
ユーザー achapiachapi
提出日時 2023-04-21 23:24:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 5,121 ms
コンパイル使用メモリ 270,748 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-08 06:45:17
合計ジャッジ時間 10,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 105 ms
9,984 KB
testcase_04 AC 108 ms
12,288 KB
testcase_05 AC 47 ms
11,136 KB
testcase_06 AC 85 ms
7,936 KB
testcase_07 AC 69 ms
7,936 KB
testcase_08 AC 42 ms
12,160 KB
testcase_09 AC 68 ms
10,368 KB
testcase_10 AC 50 ms
6,272 KB
testcase_11 AC 23 ms
5,248 KB
testcase_12 AC 40 ms
5,248 KB
testcase_13 AC 97 ms
8,832 KB
testcase_14 AC 48 ms
5,248 KB
testcase_15 AC 40 ms
9,728 KB
testcase_16 AC 67 ms
7,936 KB
testcase_17 AC 31 ms
5,376 KB
testcase_18 AC 98 ms
12,288 KB
testcase_19 AC 101 ms
12,032 KB
testcase_20 AC 77 ms
9,728 KB
testcase_21 AC 64 ms
6,400 KB
testcase_22 AC 65 ms
8,832 KB
testcase_23 AC 90 ms
7,040 KB
testcase_24 AC 60 ms
8,832 KB
testcase_25 AC 81 ms
12,032 KB
testcase_26 AC 31 ms
11,520 KB
testcase_27 AC 44 ms
5,504 KB
testcase_28 AC 39 ms
9,344 KB
testcase_29 AC 60 ms
11,008 KB
testcase_30 AC 41 ms
6,144 KB
testcase_31 AC 75 ms
8,448 KB
testcase_32 AC 55 ms
10,368 KB
testcase_33 AC 99 ms
11,520 KB
testcase_34 AC 110 ms
10,368 KB
testcase_35 AC 19 ms
7,936 KB
testcase_36 AC 65 ms
7,680 KB
testcase_37 AC 98 ms
8,064 KB
testcase_38 AC 20 ms
5,248 KB
testcase_39 AC 30 ms
5,248 KB
testcase_40 AC 17 ms
6,912 KB
testcase_41 AC 119 ms
10,624 KB
testcase_42 AC 79 ms
8,960 KB
testcase_43 AC 128 ms
13,696 KB
testcase_44 AC 128 ms
13,696 KB
testcase_45 AC 130 ms
13,696 KB
testcase_46 AC 128 ms
13,696 KB
testcase_47 AC 131 ms
13,696 KB
testcase_48 AC 128 ms
13,696 KB
testcase_49 AC 130 ms
13,568 KB
testcase_50 AC 130 ms
13,696 KB
testcase_51 AC 130 ms
13,696 KB
testcase_52 AC 134 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using mint = atcoder::modint998244353;
using namespace std;

int main() {
	int n, m;
	cin >> n >> m;
	atcoder::dsu uf(n);
	vector<vector<pair<int, int>>> 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});
		g[b].push_back({a, c});
		uf.merge(a, b);
	}
	mint ans = 1;
	vector<int> f(n, -1);
	for (auto s : uf.groups()){
		int ok = 2;
		queue<int> q;
		q.push(s[0]);
		f[s[0]] = 0;
		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 = 0;
					}
				}
			}
		}
		ans *= ok;
	}
	cout << ans.val() << endl;
}
0