結果

問題 No.2277 Honest or Dishonest ?
ユーザー lloyzlloyz
提出日時 2023-04-21 23:27:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 2,363 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,632 KB
最終ジャッジ日時 2024-11-08 06:46:39
合計ジャッジ時間 20,066 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 47 ms
54,016 KB
testcase_02 AC 47 ms
54,400 KB
testcase_03 AC 417 ms
80,756 KB
testcase_04 AC 466 ms
84,476 KB
testcase_05 AC 207 ms
94,848 KB
testcase_06 AC 375 ms
79,848 KB
testcase_07 AC 387 ms
80,476 KB
testcase_08 AC 187 ms
101,632 KB
testcase_09 AC 372 ms
86,852 KB
testcase_10 AC 335 ms
79,452 KB
testcase_11 AC 267 ms
79,840 KB
testcase_12 AC 207 ms
78,288 KB
testcase_13 AC 410 ms
80,704 KB
testcase_14 AC 169 ms
77,440 KB
testcase_15 AC 200 ms
91,520 KB
testcase_16 AC 368 ms
79,936 KB
testcase_17 AC 303 ms
79,332 KB
testcase_18 AC 453 ms
86,272 KB
testcase_19 AC 469 ms
85,012 KB
testcase_20 AC 434 ms
82,124 KB
testcase_21 AC 313 ms
79,728 KB
testcase_22 AC 403 ms
81,052 KB
testcase_23 AC 326 ms
79,524 KB
testcase_24 AC 414 ms
83,368 KB
testcase_25 AC 362 ms
89,108 KB
testcase_26 AC 150 ms
101,248 KB
testcase_27 AC 277 ms
78,596 KB
testcase_28 AC 210 ms
89,600 KB
testcase_29 AC 274 ms
90,496 KB
testcase_30 AC 318 ms
79,536 KB
testcase_31 AC 383 ms
80,516 KB
testcase_32 AC 259 ms
91,020 KB
testcase_33 AC 452 ms
83,808 KB
testcase_34 AC 429 ms
81,296 KB
testcase_35 AC 140 ms
91,776 KB
testcase_36 AC 373 ms
80,424 KB
testcase_37 AC 370 ms
79,544 KB
testcase_38 AC 171 ms
77,440 KB
testcase_39 AC 243 ms
78,500 KB
testcase_40 AC 142 ms
86,272 KB
testcase_41 AC 445 ms
80,396 KB
testcase_42 AC 391 ms
80,664 KB
testcase_43 AC 472 ms
82,260 KB
testcase_44 AC 508 ms
85,192 KB
testcase_45 AC 487 ms
84,608 KB
testcase_46 AC 504 ms
84,992 KB
testcase_47 AC 510 ms
85,656 KB
testcase_48 AC 484 ms
85,052 KB
testcase_49 AC 471 ms
81,876 KB
testcase_50 AC 463 ms
81,160 KB
testcase_51 AC 479 ms
81,292 KB
testcase_52 AC 469 ms
81,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        '''
        UnionFindクラス。nは要素数を表す。
        '''
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        '''
        要素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を含む集合と要素yを含む集合を合体する関数。
        基本的には、要素数が多い集合に統合される。
        要素数が同じときは要素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):
        '''
        要素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())
mod = 998244353
UF = UnionFind(2 * n)
for _ in range(q):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    if c == 0:
        UF.union(a, b)
        UF.union(a + n, b + n)
    else:
        UF.union(a, b + n)
        UF.union(a + n, b)

for i in range(n):
    if UF.same(i, i + n):
        print(0)
        exit()
ans = 1
seen = set()
for i in range(n):
    r0, r1 = UF.find(i), UF.find(i + n)
    if r0 in seen or r1 in seen:
        continue
    seen.add(r0)
    seen.add(r1)
    ans *= 2
    ans %= mod
print(ans)
0