結果

問題 No.2277 Honest or Dishonest ?
ユーザー shobonvipshobonvip
提出日時 2023-04-21 21:47:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,892 KB
最終ジャッジ日時 2024-11-08 06:29:24
合計ジャッジ時間 20,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 397 ms
84,184 KB
testcase_04 AC 450 ms
88,572 KB
testcase_05 AC 182 ms
85,248 KB
testcase_06 AC 355 ms
82,232 KB
testcase_07 AC 371 ms
82,744 KB
testcase_08 AC 157 ms
86,272 KB
testcase_09 AC 349 ms
86,644 KB
testcase_10 AC 328 ms
80,736 KB
testcase_11 AC 255 ms
79,648 KB
testcase_12 AC 193 ms
77,620 KB
testcase_13 AC 400 ms
83,888 KB
testcase_14 AC 158 ms
77,824 KB
testcase_15 AC 179 ms
84,096 KB
testcase_16 AC 359 ms
82,516 KB
testcase_17 AC 287 ms
80,176 KB
testcase_18 AC 435 ms
88,556 KB
testcase_19 AC 455 ms
88,832 KB
testcase_20 AC 421 ms
85,068 KB
testcase_21 AC 310 ms
80,200 KB
testcase_22 AC 386 ms
83,308 KB
testcase_23 AC 322 ms
79,980 KB
testcase_24 AC 402 ms
84,804 KB
testcase_25 AC 346 ms
87,468 KB
testcase_26 AC 125 ms
84,992 KB
testcase_27 AC 282 ms
79,468 KB
testcase_28 AC 185 ms
82,688 KB
testcase_29 AC 246 ms
85,760 KB
testcase_30 AC 341 ms
81,556 KB
testcase_31 AC 399 ms
83,548 KB
testcase_32 AC 241 ms
84,992 KB
testcase_33 AC 453 ms
87,900 KB
testcase_34 AC 453 ms
85,340 KB
testcase_35 AC 116 ms
81,280 KB
testcase_36 AC 394 ms
83,416 KB
testcase_37 AC 370 ms
81,972 KB
testcase_38 AC 175 ms
77,824 KB
testcase_39 AC 247 ms
78,688 KB
testcase_40 AC 121 ms
80,256 KB
testcase_41 AC 471 ms
85,824 KB
testcase_42 AC 408 ms
83,784 KB
testcase_43 AC 515 ms
90,404 KB
testcase_44 AC 502 ms
89,544 KB
testcase_45 AC 476 ms
89,008 KB
testcase_46 AC 489 ms
90,312 KB
testcase_47 AC 495 ms
90,016 KB
testcase_48 AC 476 ms
89,048 KB
testcase_49 AC 517 ms
90,892 KB
testcase_50 AC 502 ms
90,756 KB
testcase_51 AC 514 ms
90,364 KB
testcase_52 AC 513 ms
90,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * n
	
	def find(self, x):
		if self.parents[x] < 0:
			return x
		else:
			self.parents[x] = self.find(self.parents[x])
			return self.parents[x]
	
	def union(self, x, y):
		x = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x


mod = 998244353
n, q = map(int,input().split())
ikeru = [[] for i in range(2*n)]
uf = UnionFind(2*n)
for i in range(q):
	a, b, c = map(int,input().split())
	a-=1; b-=1
	if c == 0:
		uf.union(a, b)
		uf.union(n+a, n+b)
	else:
		uf.union(a, n+b)
		uf.union(n+a, b)

ans = 1
for i in range(n):
	if uf.find(i) == uf.find(i+n):
		ans = 0
	if uf.find(i) == i:
		ans *= 2
		ans %= mod

print(ans)
0