結果

問題 No.1420 国勢調査 (Easy)
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-15 10:21:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 1,056 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,268 KB
最終ジャッジ日時 2024-11-06 23:19:48
合計ジャッジ時間 10,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 227 ms
99,728 KB
testcase_03 AC 253 ms
107,796 KB
testcase_04 AC 249 ms
108,044 KB
testcase_05 AC 245 ms
107,668 KB
testcase_06 AC 248 ms
107,924 KB
testcase_07 AC 226 ms
107,024 KB
testcase_08 AC 205 ms
98,964 KB
testcase_09 AC 227 ms
106,776 KB
testcase_10 AC 239 ms
106,772 KB
testcase_11 AC 232 ms
107,012 KB
testcase_12 AC 148 ms
100,224 KB
testcase_13 AC 164 ms
100,352 KB
testcase_14 AC 144 ms
100,324 KB
testcase_15 AC 173 ms
100,608 KB
testcase_16 AC 171 ms
100,608 KB
testcase_17 AC 170 ms
100,352 KB
testcase_18 AC 172 ms
100,968 KB
testcase_19 AC 174 ms
100,352 KB
testcase_20 AC 166 ms
100,224 KB
testcase_21 AC 177 ms
100,892 KB
testcase_22 AC 404 ms
133,256 KB
testcase_23 AC 401 ms
129,424 KB
testcase_24 AC 390 ms
133,268 KB
testcase_25 AC 395 ms
133,244 KB
testcase_26 AC 397 ms
129,560 KB
testcase_27 AC 220 ms
115,960 KB
testcase_28 AC 218 ms
115,956 KB
testcase_29 AC 214 ms
116,208 KB
testcase_30 AC 221 ms
115,956 KB
testcase_31 AC 221 ms
115,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def main1(n,m,aby):
  g=[[] for _ in range(n)]
  for a,b,y in aby:
    a,b=a-1,b-1
    g[a].append([b,y])
    g[b].append([a,y])
  x=[0]*n
  flg=True

  mi=set(range(n))
  seen=[-1]*n
  while mi:
    v0=mi.pop()
    grp=set()
    flg=True
    seen[v0]=0
    todo=[v0]
    grp={v0}
    while todo:
      v=todo.pop()
      mi.discard(v)
      grp.add(v)
      for nv,y in g[v]:
        if seen[nv]==-1:
          seen[nv]=seen[v]^y
          todo.append(nv)
        elif seen[nv]==seen[v]^y:
          continue
        else:
          flg=False
          break
      if not flg:break
    if not flg:return [-1]
    for v in grp:
      if seen[v]>0:
        x[v]+=seen[v]
  return x

def chk(n,aby,x):
  for a,b,y in aby:
    a,b=a-1,b-1
    if x[a]^x[b]==y:
      pass
    else:
      return False
  return True

if __name__=='__main__':
  n,m=map(int,input().split())
  aby=[]
  for _ in range(m):
    a,b=map(int,input().split())
    y=int(input())
    aby.append([a,b,y])
  ret1=main1(n,m,aby)
  print(*ret1,sep='\n')
0