結果

問題 No.2277 Honest or Dishonest ?
ユーザー rlangevinrlangevin
提出日時 2023-04-21 21:48:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 614 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-11-08 06:29:43
合計ジャッジ時間 11,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,760 KB
testcase_01 AC 49 ms
53,760 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 208 ms
88,320 KB
testcase_04 AC 220 ms
90,496 KB
testcase_05 AC 140 ms
82,816 KB
testcase_06 AC 185 ms
86,016 KB
testcase_07 AC 156 ms
83,840 KB
testcase_08 AC 123 ms
83,200 KB
testcase_09 AC 181 ms
86,528 KB
testcase_10 AC 140 ms
82,176 KB
testcase_11 AC 107 ms
78,720 KB
testcase_12 AC 123 ms
80,640 KB
testcase_13 AC 202 ms
87,168 KB
testcase_14 AC 124 ms
80,896 KB
testcase_15 AC 136 ms
81,792 KB
testcase_16 AC 174 ms
83,712 KB
testcase_17 AC 116 ms
79,488 KB
testcase_18 AC 232 ms
90,112 KB
testcase_19 AC 228 ms
90,112 KB
testcase_20 AC 179 ms
85,760 KB
testcase_21 AC 149 ms
82,048 KB
testcase_22 AC 164 ms
85,120 KB
testcase_23 AC 185 ms
85,504 KB
testcase_24 AC 161 ms
84,864 KB
testcase_25 AC 191 ms
87,552 KB
testcase_26 AC 121 ms
82,688 KB
testcase_27 AC 116 ms
78,336 KB
testcase_28 AC 138 ms
82,176 KB
testcase_29 AC 181 ms
85,632 KB
testcase_30 AC 123 ms
80,000 KB
testcase_31 AC 156 ms
84,352 KB
testcase_32 AC 165 ms
84,992 KB
testcase_33 AC 225 ms
89,600 KB
testcase_34 AC 198 ms
88,448 KB
testcase_35 AC 103 ms
79,872 KB
testcase_36 AC 156 ms
84,224 KB
testcase_37 AC 191 ms
86,528 KB
testcase_38 AC 94 ms
77,952 KB
testcase_39 AC 104 ms
78,592 KB
testcase_40 AC 107 ms
79,360 KB
testcase_41 AC 226 ms
89,344 KB
testcase_42 AC 160 ms
84,992 KB
testcase_43 AC 234 ms
91,520 KB
testcase_44 AC 268 ms
92,032 KB
testcase_45 AC 264 ms
91,904 KB
testcase_46 AC 257 ms
91,904 KB
testcase_47 AC 252 ms
92,032 KB
testcase_48 AC 262 ms
91,648 KB
testcase_49 AC 246 ms
91,520 KB
testcase_50 AC 220 ms
91,520 KB
testcase_51 AC 219 ms
91,648 KB
testcase_52 AC 240 ms
91,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from collections import *

N, Q = map(int, readline().split())
G = [[] for i in range(N)]
ans = 1
mod = 998244353
for i in range(Q):
    A, B, C = map(int, readline().split())
    A, B = A - 1, B - 1
    G[A].append((B, C))
    G[B].append((A, C))
    
D = deque()
dist = [-1] * N
for i in range(N):
    if dist[i] != -1:
        continue
    ans *= 2
    ans %= mod
    D.append(i)
    dist[i] = 0
    while D:
        u = D.popleft()
        for v, c in G[u]:
            if dist[v] == -1:
                dist[v] = (dist[u] + c) % 2
                D.append(v)
            else:
                if dist[v] != (dist[u] + c) % 2:
                    print(0)
                    exit()
print(ans)
    
0