結果

問題 No.2277 Honest or Dishonest ?
ユーザー titiatitia
提出日時 2023-04-23 02:19:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,576 KB
最終ジャッジ日時 2024-11-08 06:53:47
合計ジャッジ時間 24,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 632 ms
34,176 KB
testcase_04 AC 626 ms
35,584 KB
testcase_05 AC 255 ms
22,528 KB
testcase_06 AC 535 ms
30,208 KB
testcase_07 AC 433 ms
26,880 KB
testcase_08 AC 221 ms
21,888 KB
testcase_09 AC 403 ms
27,776 KB
testcase_10 AC 332 ms
22,528 KB
testcase_11 AC 156 ms
16,512 KB
testcase_12 AC 303 ms
21,632 KB
testcase_13 AC 602 ms
32,640 KB
testcase_14 AC 396 ms
24,192 KB
testcase_15 AC 214 ms
20,736 KB
testcase_16 AC 431 ms
26,624 KB
testcase_17 AC 213 ms
18,560 KB
testcase_18 AC 581 ms
34,304 KB
testcase_19 AC 610 ms
34,560 KB
testcase_20 AC 497 ms
29,440 KB
testcase_21 AC 451 ms
26,624 KB
testcase_22 AC 407 ms
26,752 KB
testcase_23 AC 519 ms
32,000 KB
testcase_24 AC 367 ms
25,472 KB
testcase_25 AC 466 ms
30,080 KB
testcase_26 AC 165 ms
19,456 KB
testcase_27 AC 259 ms
21,248 KB
testcase_28 AC 226 ms
20,608 KB
testcase_29 AC 331 ms
25,216 KB
testcase_30 AC 242 ms
21,120 KB
testcase_31 AC 367 ms
28,288 KB
testcase_32 AC 299 ms
23,808 KB
testcase_33 AC 598 ms
34,304 KB
testcase_34 AC 597 ms
35,328 KB
testcase_35 AC 107 ms
16,000 KB
testcase_36 AC 392 ms
26,112 KB
testcase_37 AC 530 ms
33,280 KB
testcase_38 AC 139 ms
15,872 KB
testcase_39 AC 193 ms
18,048 KB
testcase_40 AC 102 ms
15,232 KB
testcase_41 AC 612 ms
36,736 KB
testcase_42 AC 405 ms
29,312 KB
testcase_43 AC 647 ms
40,320 KB
testcase_44 AC 757 ms
40,576 KB
testcase_45 AC 752 ms
40,576 KB
testcase_46 AC 760 ms
40,448 KB
testcase_47 AC 736 ms
40,448 KB
testcase_48 AC 750 ms
40,448 KB
testcase_49 AC 677 ms
40,448 KB
testcase_50 AC 612 ms
40,320 KB
testcase_51 AC 597 ms
40,448 KB
testcase_52 AC 626 ms
40,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())

E=[[] for i in range(N+1)]

for i in range(Q):
    x,y,c=map(int,input().split())
    E[x].append((y,c))
    E[y].append((x,c))

ANS=[-1]*(N+1)

mod=998244353


A=0

for i in range(1,N+1):
    if ANS[i]==-1:
        A+=1
        ANS[i]=0

        Q=[i]
        while Q:
            x=Q.pop()

            for to,c in E[x]:
                if c==0:
                    if ANS[to]==-1:
                        Q.append(to)
                        ANS[to]=ANS[x]
                    else:
                        if ANS[to]!=ANS[x]:
                            print(0)
                            exit()
                else:
                    if ANS[to]==-1:
                        Q.append(to)
                        ANS[to]=ANS[x]^1
                    else:
                        if ANS[to]==ANS[x]:
                            print(0)
                            exit()

print(pow(2,A,mod))
                        
0