結果

問題 No.2277 Honest or Dishonest ?
ユーザー tamatotamato
提出日時 2023-04-21 21:44:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-11-08 06:27:34
合計ジャッジ時間 11,916 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,632 KB
testcase_01 AC 49 ms
53,632 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 217 ms
91,264 KB
testcase_04 AC 251 ms
95,616 KB
testcase_05 AC 159 ms
84,608 KB
testcase_06 AC 184 ms
87,552 KB
testcase_07 AC 167 ms
86,144 KB
testcase_08 AC 134 ms
84,096 KB
testcase_09 AC 205 ms
88,960 KB
testcase_10 AC 140 ms
83,200 KB
testcase_11 AC 114 ms
79,104 KB
testcase_12 AC 122 ms
80,640 KB
testcase_13 AC 209 ms
89,472 KB
testcase_14 AC 127 ms
80,896 KB
testcase_15 AC 148 ms
83,584 KB
testcase_16 AC 179 ms
85,888 KB
testcase_17 AC 127 ms
79,360 KB
testcase_18 AC 240 ms
94,080 KB
testcase_19 AC 241 ms
94,080 KB
testcase_20 AC 199 ms
89,600 KB
testcase_21 AC 153 ms
82,688 KB
testcase_22 AC 164 ms
87,552 KB
testcase_23 AC 185 ms
86,016 KB
testcase_24 AC 171 ms
86,912 KB
testcase_25 AC 184 ms
89,472 KB
testcase_26 AC 120 ms
82,304 KB
testcase_27 AC 142 ms
81,536 KB
testcase_28 AC 134 ms
82,944 KB
testcase_29 AC 171 ms
85,632 KB
testcase_30 AC 149 ms
82,944 KB
testcase_31 AC 199 ms
88,448 KB
testcase_32 AC 167 ms
85,504 KB
testcase_33 AC 215 ms
93,312 KB
testcase_34 AC 252 ms
92,024 KB
testcase_35 AC 108 ms
80,256 KB
testcase_36 AC 183 ms
87,040 KB
testcase_37 AC 212 ms
87,680 KB
testcase_38 AC 104 ms
78,336 KB
testcase_39 AC 118 ms
78,720 KB
testcase_40 AC 109 ms
80,256 KB
testcase_41 AC 265 ms
93,056 KB
testcase_42 AC 218 ms
89,308 KB
testcase_43 AC 291 ms
96,000 KB
testcase_44 AC 293 ms
96,256 KB
testcase_45 AC 283 ms
97,664 KB
testcase_46 AC 278 ms
97,664 KB
testcase_47 AC 274 ms
97,664 KB
testcase_48 AC 279 ms
97,408 KB
testcase_49 AC 298 ms
97,152 KB
testcase_50 AC 293 ms
96,640 KB
testcase_51 AC 290 ms
96,768 KB
testcase_52 AC 301 ms
96,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353
from collections import deque

N, Q = map(int, input().split())
adj = [[] for _ in range(N + 1)]
for _ in range(Q):
    a, b, c = map(int, input().split())
    adj[a].append((b, c))
    adj[b].append((a, c))

ans = 1
seen = [-1] * (N + 1)
for v0 in range(1, N + 1):
    if seen[v0] != -1:
        continue
    seen[v0] = 0
    que = deque()
    que.append(v0)
    ok = 1
    V = []
    while que:
        v = que.popleft()
        V.append(v)
        for u, c in adj[v]:
            if seen[u] == -1:
                if c == 0:
                    seen[u] = seen[v]
                else:
                    seen[u] = seen[v] ^ 1
                que.append(u)
            else:
                if c == 0:
                    if seen[u] != seen[v]:
                        ok = 0
                else:
                    if seen[u] == seen[v]:
                        ok = 0
    if ok:
        ans = (ans * 2) % mod
    else:
        ans = 0
print(ans)
0