結果

問題 No.2277 Honest or Dishonest ?
ユーザー 👑 KazunKazun
提出日時 2023-04-22 01:17:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 2,667 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 98,432 KB
最終ジャッジ日時 2024-11-08 06:48:26
合計ジャッジ時間 11,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 195 ms
89,728 KB
testcase_04 AC 214 ms
93,696 KB
testcase_05 AC 163 ms
89,472 KB
testcase_06 AC 181 ms
83,840 KB
testcase_07 AC 176 ms
85,120 KB
testcase_08 AC 167 ms
94,464 KB
testcase_09 AC 180 ms
88,448 KB
testcase_10 AC 142 ms
81,408 KB
testcase_11 AC 122 ms
78,848 KB
testcase_12 AC 130 ms
78,208 KB
testcase_13 AC 201 ms
85,888 KB
testcase_14 AC 118 ms
77,568 KB
testcase_15 AC 166 ms
87,044 KB
testcase_16 AC 168 ms
84,096 KB
testcase_17 AC 132 ms
80,256 KB
testcase_18 AC 232 ms
93,568 KB
testcase_19 AC 231 ms
94,208 KB
testcase_20 AC 200 ms
89,216 KB
testcase_21 AC 180 ms
81,664 KB
testcase_22 AC 189 ms
86,272 KB
testcase_23 AC 168 ms
82,176 KB
testcase_24 AC 171 ms
85,888 KB
testcase_25 AC 185 ms
91,520 KB
testcase_26 AC 142 ms
98,432 KB
testcase_27 AC 135 ms
80,256 KB
testcase_28 AC 160 ms
86,488 KB
testcase_29 AC 180 ms
92,032 KB
testcase_30 AC 133 ms
81,408 KB
testcase_31 AC 143 ms
83,584 KB
testcase_32 AC 185 ms
90,080 KB
testcase_33 AC 215 ms
91,776 KB
testcase_34 AC 203 ms
89,472 KB
testcase_35 AC 108 ms
84,224 KB
testcase_36 AC 147 ms
83,584 KB
testcase_37 AC 164 ms
83,456 KB
testcase_38 AC 108 ms
77,056 KB
testcase_39 AC 108 ms
77,312 KB
testcase_40 AC 114 ms
81,920 KB
testcase_41 AC 179 ms
88,448 KB
testcase_42 AC 162 ms
85,632 KB
testcase_43 AC 193 ms
92,416 KB
testcase_44 AC 239 ms
97,280 KB
testcase_45 AC 243 ms
96,896 KB
testcase_46 AC 241 ms
96,896 KB
testcase_47 AC 240 ms
97,280 KB
testcase_48 AC 247 ms
97,920 KB
testcase_49 AC 212 ms
93,312 KB
testcase_50 AC 213 ms
93,824 KB
testcase_51 AC 212 ms
93,824 KB
testcase_52 AC 221 ms
95,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Separate_Alternative:
    def __init__(self, N):
        self.N=N

        self.same_edge=[[] for _ in range(N)]
        self.diff_edge=[[] for _ in range(N)]

    def same(self, x, y):
        self.same_edge[x].append(y)
        self.same_edge[y].append(x)

    def difference(self, x, y):
        self.diff_edge[x].append(y)
        self.diff_edge[y].append(x)

    def is_reasonable(self):
        T=[0]*self.N
        for x in range(self.N):
            if T[x]!=0:
                continue

            T[x]=1
            S=[x]
            while S:
                y=S.pop()
                for z in self.same_edge[y]:
                    if T[z]==0:
                        T[z]=T[y]
                        S.append(z)
                    elif T[z]!=T[y]:
                        return False

                for z in self.diff_edge[y]:
                    if T[z]==0:
                        T[z]=-T[y]
                        S.append(z)
                    elif T[z]==T[y]:
                        return False
        return True

    def separate(self):
        Sep=[]
        seen=[0]*self.N

        for x in range(self.N):
            if seen[x]!=0:
                continue

            seen[x]=1
            U=[x]; V=[]
            S=[x]
            while S:
                y=S.pop()
                for z in self.same_edge[y]:
                    if seen[z]==0:
                        seen[z]=seen[y]
                        S.append(z)

                        if seen[z]==1:
                            U.append(z)
                        else:
                            V.append(z)

                    elif seen[z]!=seen[y]:
                        return None

                for z in self.diff_edge[y]:
                    if seen[z]==0:
                        seen[z]=-seen[y]
                        S.append(z)

                        if seen[z]==1:
                            U.append(z)
                        else:
                            V.append(z)

                    elif seen[z]==seen[y]:
                        return None

            Sep.append((U,V))
        return Sep

#==================================================
def solve():
    N,Q=map(int,input().split())

    S=Separate_Alternative(N)
    for i in range(Q):
        A,B,C=map(int,input().split())
        A-=1; B-=1
        if C==0:
            S.same(A,B)
        else:
            S.difference(A,B)

    Sep=S.separate()
    if Sep is None:
        return 0
    else:
        return pow(2, len(Sep), 998244353)

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

print(solve())
0