結果

問題 No.2277 Honest or Dishonest ?
ユーザー minimumminimum
提出日時 2023-04-21 21:48:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,840 KB
最終ジャッジ日時 2024-11-08 06:28:29
合計ジャッジ時間 13,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 274 ms
90,752 KB
testcase_04 AC 315 ms
96,128 KB
testcase_05 AC 199 ms
88,576 KB
testcase_06 AC 218 ms
87,936 KB
testcase_07 AC 209 ms
86,912 KB
testcase_08 AC 185 ms
88,832 KB
testcase_09 AC 244 ms
91,520 KB
testcase_10 AC 176 ms
83,712 KB
testcase_11 AC 141 ms
80,768 KB
testcase_12 AC 147 ms
79,104 KB
testcase_13 AC 239 ms
89,088 KB
testcase_14 AC 151 ms
81,024 KB
testcase_15 AC 182 ms
86,912 KB
testcase_16 AC 202 ms
86,400 KB
testcase_17 AC 150 ms
81,664 KB
testcase_18 AC 284 ms
95,744 KB
testcase_19 AC 298 ms
95,360 KB
testcase_20 AC 246 ms
90,368 KB
testcase_21 AC 197 ms
84,096 KB
testcase_22 AC 202 ms
88,320 KB
testcase_23 AC 220 ms
87,040 KB
testcase_24 AC 211 ms
88,064 KB
testcase_25 AC 244 ms
94,464 KB
testcase_26 AC 154 ms
86,016 KB
testcase_27 AC 159 ms
80,896 KB
testcase_28 AC 177 ms
86,400 KB
testcase_29 AC 222 ms
89,984 KB
testcase_30 AC 170 ms
82,432 KB
testcase_31 AC 212 ms
87,552 KB
testcase_32 AC 200 ms
89,216 KB
testcase_33 AC 269 ms
94,080 KB
testcase_34 AC 269 ms
92,288 KB
testcase_35 AC 136 ms
82,560 KB
testcase_36 AC 199 ms
86,528 KB
testcase_37 AC 222 ms
88,064 KB
testcase_38 AC 125 ms
77,952 KB
testcase_39 AC 142 ms
80,256 KB
testcase_40 AC 133 ms
81,920 KB
testcase_41 AC 274 ms
93,184 KB
testcase_42 AC 222 ms
88,960 KB
testcase_43 AC 329 ms
99,584 KB
testcase_44 AC 335 ms
99,328 KB
testcase_45 AC 325 ms
99,328 KB
testcase_46 AC 334 ms
99,328 KB
testcase_47 AC 337 ms
99,200 KB
testcase_48 AC 340 ms
99,712 KB
testcase_49 AC 338 ms
99,456 KB
testcase_50 AC 338 ms
99,328 KB
testcase_51 AC 332 ms
99,456 KB
testcase_52 AC 337 ms
99,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

MOD = 998244353

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


dist = [-1] * N
ans = 1
for i in range(N):
    if dist[i] != -1:
        continue
    ans *= 2
    ans %= MOD
    dist[i] = 0
    dq = deque()
    dq.append(i)
    while dq:
        now = dq.popleft()
        for j in range(len(edges[now])):
            nxt = edges[now][j]
            cost = dist[now] + edges_c[now][j]
            if dist[nxt] == -1:
                dist[nxt] = cost
                if edges_c[now][j] == 0:
                    dq.appendleft(nxt)
                else:
                    dq.append(nxt)
            else:
                if (dist[nxt] - cost) % 2:
                    ans = 0
print(ans)
0