結果

問題 No.2277 Honest or Dishonest ?
ユーザー timi
提出日時 2023-04-21 22:41:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 273,848 KB
最終ジャッジ日時 2024-11-08 06:38:39
合計ジャッジ時間 7,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 TLE * 2 -- * 47
権限があれば一括ダウンロードができます

ソースコード

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 
  VV=[-1]*N
  from collections import deque
  for i in range(N):
    if VV[i]==-1:
      v,w=0,0
      V=[-1]*N;VV[i]=1
      d=deque()
      d.append(i);V[i]=0
      while d:
        now=d.popleft()
        for nex,c in D[now]:
          if V[nex]==-1:
            VV[nex]=1
            if V[now]==c:
              V[nex]=0;d.append(nex)
            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