結果

問題 No.2277 Honest or Dishonest ?
ユーザー H20H20
提出日時 2023-04-21 22:50:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 1,813 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,908 KB
最終ジャッジ日時 2024-11-08 06:39:30
合計ジャッジ時間 20,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,016 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 457 ms
96,528 KB
testcase_04 AC 473 ms
96,792 KB
testcase_05 AC 203 ms
89,780 KB
testcase_06 AC 393 ms
93,468 KB
testcase_07 AC 386 ms
90,216 KB
testcase_08 AC 159 ms
91,520 KB
testcase_09 AC 355 ms
90,668 KB
testcase_10 AC 328 ms
87,912 KB
testcase_11 AC 269 ms
81,924 KB
testcase_12 AC 208 ms
85,992 KB
testcase_13 AC 415 ms
95,172 KB
testcase_14 AC 187 ms
88,448 KB
testcase_15 AC 182 ms
87,356 KB
testcase_16 AC 380 ms
90,268 KB
testcase_17 AC 294 ms
83,804 KB
testcase_18 AC 461 ms
96,312 KB
testcase_19 AC 473 ms
95,616 KB
testcase_20 AC 470 ms
92,112 KB
testcase_21 AC 339 ms
91,228 KB
testcase_22 AC 434 ms
89,784 KB
testcase_23 AC 359 ms
95,740 KB
testcase_24 AC 397 ms
88,596 KB
testcase_25 AC 351 ms
93,332 KB
testcase_26 AC 128 ms
89,600 KB
testcase_27 AC 288 ms
86,960 KB
testcase_28 AC 194 ms
87,196 KB
testcase_29 AC 256 ms
89,756 KB
testcase_30 AC 331 ms
85,836 KB
testcase_31 AC 393 ms
91,512 KB
testcase_32 AC 252 ms
88,936 KB
testcase_33 AC 482 ms
95,956 KB
testcase_34 AC 438 ms
97,420 KB
testcase_35 AC 123 ms
84,992 KB
testcase_36 AC 375 ms
90,752 KB
testcase_37 AC 387 ms
96,344 KB
testcase_38 AC 181 ms
81,028 KB
testcase_39 AC 248 ms
83,672 KB
testcase_40 AC 125 ms
82,048 KB
testcase_41 AC 466 ms
98,228 KB
testcase_42 AC 393 ms
91,564 KB
testcase_43 AC 461 ms
98,740 KB
testcase_44 AC 494 ms
99,696 KB
testcase_45 AC 490 ms
99,364 KB
testcase_46 AC 494 ms
99,908 KB
testcase_47 AC 511 ms
99,824 KB
testcase_48 AC 512 ms
99,388 KB
testcase_49 AC 487 ms
99,172 KB
testcase_50 AC 488 ms
98,944 KB
testcase_51 AC 486 ms
98,420 KB
testcase_52 AC 478 ms
98,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
from collections import defaultdict

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

    def size(self, x):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())



N,Q = map(int, input().split())
ABC = [list(map(int, input().split())) for _ in range(Q)]
uf = UnionFind(2*N)
edges=[]
for a,b,c in ABC:
    edges.append((a-1,b-1))
    if c==0:
        uf.union(a-1,b-1)
        uf.union(a-1+N,b-1+N)
    if c==1:
        uf.union(a-1,b-1+N)
        uf.union(a-1+N,b-1)
for i in range(N):
    if uf.same(i,i+N):
        print(0)
        exit()
ans=1
mod=998244353 
print(pow(2,uf.group_count()//2,mod))
0