結果

問題 No.2277 Honest or Dishonest ?
ユーザー timi
提出日時 2023-04-21 22:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-11-08 06:39:08
合計ジャッジ時間 10,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
  from sys import stdin, setrecursionlimit
  input = stdin.readline
  readline = stdin.readline
  N,Q=map(int, input().split())
  D=[[] for i in range(N)]
  for i in range(Q):
    a,b,c=map(int, input().split())
    a-=1
    b-=1
    D[a].append((b,c))
    D[b].append((a,c))
    
  ans=1;mod=998244353 
  V=[-1]*N
  from collections import deque
  for i in range(N):
    if V[i]==-1:
      v=0
      d=deque()
      d.append(i)
      V[i]=0
      while d:
        now=d.popleft()
        for nex,c in D[now]:
          if V[nex]==-1:
            if V[now]==c:
              V[nex]=0
            else:
              V[nex]=1
            d.append(nex)
          else:
            if V[now]==c:
              f=0
            else:
              f=1 
            if V[nex]!=f:
              v=1 
      ans*=(2-2*v)
      ans%=mod
  print(ans)
main()
0