結果

問題 No.1420 国勢調査 (Easy)
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-15 09:25:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,237 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 249,192 KB
最終ジャッジ日時 2024-11-06 22:40:45
合計ジャッジ時間 20,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 715 ms
114,940 KB
testcase_03 AC 730 ms
114,448 KB
testcase_04 AC 709 ms
114,708 KB
testcase_05 AC 616 ms
114,704 KB
testcase_06 AC 715 ms
114,828 KB
testcase_07 AC 343 ms
111,884 KB
testcase_08 AC 255 ms
100,756 KB
testcase_09 AC 234 ms
107,156 KB
testcase_10 AC 238 ms
107,152 KB
testcase_11 AC 238 ms
107,028 KB
testcase_12 AC 195 ms
104,060 KB
testcase_13 AC 1,228 ms
207,616 KB
testcase_14 AC 153 ms
101,240 KB
testcase_15 AC 1,204 ms
208,556 KB
testcase_16 AC 1,042 ms
208,844 KB
testcase_17 AC 1,071 ms
207,932 KB
testcase_18 AC 1,056 ms
206,660 KB
testcase_19 AC 1,063 ms
207,928 KB
testcase_20 AC 1,288 ms
208,776 KB
testcase_21 AC 1,065 ms
209,020 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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
  for i in range(30):
    bit=1<<i
    mi=set(range(n))
    seen=[-1]*n
    while mi:
      v0=mi.pop()
      grp={v0}
      for d in (0,bit):
        flg=True
        seen[v0]=d
        todo=[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&bit)
              todo.append(nv)
            elif seen[nv]==seen[v]^(y&bit):
              continue
            else:
              flg=False
              break
          if not flg:break
        if flg:
          for v in grp:
            if seen[v]>0:
              x[v]+=bit
          break
      if not flg:return [-1]
  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