結果

問題 No.2277 Honest or Dishonest ?
ユーザー tonyu0tonyu0
提出日時 2023-04-21 23:13:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,124 KB
最終ジャッジ日時 2024-11-08 06:44:00
合計ジャッジ時間 22,621 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 482 ms
82,216 KB
testcase_04 AC 508 ms
83,032 KB
testcase_05 AC 207 ms
79,084 KB
testcase_06 AC 459 ms
79,996 KB
testcase_07 AC 427 ms
80,676 KB
testcase_08 AC 168 ms
79,744 KB
testcase_09 AC 422 ms
82,032 KB
testcase_10 AC 376 ms
79,984 KB
testcase_11 AC 299 ms
79,584 KB
testcase_12 AC 205 ms
77,696 KB
testcase_13 AC 465 ms
81,068 KB
testcase_14 AC 177 ms
77,312 KB
testcase_15 AC 203 ms
79,760 KB
testcase_16 AC 434 ms
80,228 KB
testcase_17 AC 329 ms
80,120 KB
testcase_18 AC 535 ms
83,728 KB
testcase_19 AC 514 ms
82,884 KB
testcase_20 AC 479 ms
82,456 KB
testcase_21 AC 377 ms
79,996 KB
testcase_22 AC 456 ms
81,392 KB
testcase_23 AC 379 ms
78,980 KB
testcase_24 AC 450 ms
81,812 KB
testcase_25 AC 409 ms
82,460 KB
testcase_26 AC 125 ms
79,360 KB
testcase_27 AC 314 ms
80,048 KB
testcase_28 AC 251 ms
79,956 KB
testcase_29 AC 283 ms
80,836 KB
testcase_30 AC 367 ms
78,956 KB
testcase_31 AC 456 ms
80,212 KB
testcase_32 AC 266 ms
80,832 KB
testcase_33 AC 528 ms
82,552 KB
testcase_34 AC 498 ms
81,488 KB
testcase_35 AC 129 ms
78,080 KB
testcase_36 AC 422 ms
80,516 KB
testcase_37 AC 427 ms
80,004 KB
testcase_38 AC 192 ms
77,696 KB
testcase_39 AC 283 ms
79,680 KB
testcase_40 AC 127 ms
77,568 KB
testcase_41 AC 486 ms
80,960 KB
testcase_42 AC 449 ms
80,292 KB
testcase_43 AC 518 ms
82,524 KB
testcase_44 AC 560 ms
83,952 KB
testcase_45 AC 554 ms
83,808 KB
testcase_46 AC 575 ms
83,924 KB
testcase_47 AC 572 ms
84,124 KB
testcase_48 AC 560 ms
83,644 KB
testcase_49 AC 543 ms
82,504 KB
testcase_50 AC 530 ms
81,944 KB
testcase_51 AC 557 ms
82,304 KB
testcase_52 AC 569 ms
83,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())

uf = [-1]*(2*n)


def root(a):
    if uf[a] < 0:
        return a
    uf[a] = root(uf[a])
    return uf[a]


def same(a, b):
    return root(a) == root(b)


def merge(a, b):
    if same(a, b):
        return
    a = root(a)
    b = root(b)
    if uf[b] < uf[a]:
        a, b = b, a
    uf[a] += uf[b]
    uf[b] = a


def sizeof(a):
    return -uf[a]


mod = 998244353
for _ in range(q):
    a, b, c = map(int, input().split())
    # 各人 2頂点用意する 
    # A B 0 のとき A0->B0, A1->B1に辺
    # A B 1 のとき A0->B1, A1->B0に辺
    # やって、A0とA1が同じ頂点で矛盾 (A0と仮定してA1が導かれるのが矛盾)
    a -= 1
    b -= 1
    if c == 0:
        merge(a, b)
        merge(a + n, b + n)
    else:
        merge(a, b + n)
        merge(a + n, b)

if same(a, a + n):
    print(0)
else:
    ch = [0] * (n * 2)
    ans = 1
    for i in range(n):
        r0 = root(i)
        r1 = root(i + n)
        if ch[r0] > 0 or ch[r1] > 0:
            continue
        ch[r0] = 1
        ch[r1] = 1
        ans = ans * 2 % mod
    print(ans)
0