結果

問題 No.2277 Honest or Dishonest ?
ユーザー achapiachapi
提出日時 2023-04-21 22:07:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,540 bytes
コンパイル時間 4,905 ms
コンパイル使用メモリ 272,852 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-11-08 06:32:40
合計ジャッジ時間 10,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 93 ms
8,832 KB
testcase_04 AC 92 ms
11,520 KB
testcase_05 AC 43 ms
10,880 KB
testcase_06 AC 82 ms
7,040 KB
testcase_07 AC 60 ms
7,296 KB
testcase_08 AC 42 ms
12,160 KB
testcase_09 AC 60 ms
10,112 KB
testcase_10 AC 46 ms
5,632 KB
testcase_11 AC 22 ms
5,248 KB
testcase_12 AC 39 ms
5,248 KB
testcase_13 AC 89 ms
7,680 KB
testcase_14 AC 47 ms
5,248 KB
testcase_15 AC 38 ms
9,728 KB
testcase_16 AC 61 ms
7,168 KB
testcase_17 AC 30 ms
5,248 KB
testcase_18 AC 85 ms
11,648 KB
testcase_19 AC 87 ms
11,520 KB
testcase_20 AC 70 ms
9,088 KB
testcase_21 AC 66 ms
5,760 KB
testcase_22 AC 60 ms
8,320 KB
testcase_23 WA -
testcase_24 AC 53 ms
8,320 KB
testcase_25 AC 71 ms
11,648 KB
testcase_26 AC 32 ms
11,648 KB
testcase_27 WA -
testcase_28 AC 36 ms
9,088 KB
testcase_29 AC 51 ms
10,752 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 47 ms
10,240 KB
testcase_33 AC 89 ms
10,880 KB
testcase_34 WA -
testcase_35 AC 18 ms
8,192 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 16 ms
7,040 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 109 ms
12,800 KB
testcase_45 AC 111 ms
12,800 KB
testcase_46 AC 111 ms
12,928 KB
testcase_47 AC 108 ms
12,800 KB
testcase_48 AC 109 ms
12,928 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

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});
		uf.merge(a, b);
	}
	mint ans = 1;
	vector<int> f(n, -1);
	vector<int> f2(n, -1);
	vector<bool> f_(n);
	vector<bool> f2_(n);
	for (auto s : uf.groups()){
		int c = 0;
		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);
				}
			}
		}
		bool ok = true;
		q.push(s[0]);
		while (!q.empty()){
			int v = q.front();
			q.pop();
			for (auto p : g[v]){
				if (f_[p.first]){
					continue;
				}
				if (f[p.first] != (f[v] ^ p.second)){
					ok = false;
				}
				f_[p.first] = true;
				q.push(p.first);
			}
		}
		c += ok;
		q.push(s[0]);
		f2[s[0]] = 1;
		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);
				}
			}
		}
		ok = true;
		q.push(s[0]);
		while (!q.empty()){
			int v = q.front();
			q.pop();
			for (auto p : g[v]){
				if (f2_[p.first]){
					continue;
				}
				if (f2[p.first] != (f2[v] ^ p.second)){
					ok = false;
				}
				f2_[p.first] = true;
				q.push(p.first);
			}
		}
		c += ok;
		ans *= c;
	}
	cout << ans.val() << endl;
}
0