結果

問題 No.1451 集団登校
ユーザー あかりきあかりき
提出日時 2021-04-13 01:07:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 905 ms / 2,000 ms
コード長 1,756 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 124,264 KB
最終ジャッジ日時 2024-06-28 20:01:07
合計ジャッジ時間 10,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 257 ms
124,264 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 308 ms
108,724 KB
testcase_11 AC 105 ms
105,600 KB
testcase_12 AC 266 ms
103,492 KB
testcase_13 AC 605 ms
115,008 KB
testcase_14 AC 581 ms
112,328 KB
testcase_15 AC 501 ms
101,696 KB
testcase_16 AC 564 ms
108,920 KB
testcase_17 AC 216 ms
79,264 KB
testcase_18 AC 375 ms
92,096 KB
testcase_19 AC 90 ms
93,440 KB
testcase_20 AC 905 ms
117,888 KB
testcase_21 AC 135 ms
77,184 KB
testcase_22 AC 347 ms
85,092 KB
testcase_23 AC 94 ms
76,532 KB
testcase_24 AC 247 ms
105,736 KB
testcase_25 AC 528 ms
100,288 KB
testcase_26 AC 609 ms
110,208 KB
testcase_27 AC 377 ms
95,132 KB
testcase_28 AC 420 ms
90,504 KB
testcase_29 AC 596 ms
101,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UF():
  def __init__(self, N):
    self._parent=[n for n in range(0, N)]
    self._size=[1] * N

  def find_root(self, x):
    if self._parent[x]==x:return x
    self._parent[x]=self.find_root(self._parent[x])
    return self._parent[x]

  def unite(self, x, y):
    gx=self.find_root(x)
    gy=self.find_root(y)
    if gx==gy:return

    if self._size[gx]<self._size[gy]:
      self._parent[gx]=gy
      self._size[gy]+=self._size[gx]
    else:
      self._parent[gy]=gx
      self._size[gx]+=self._size[gy]

  def size(self, x):
    return self._size[self.find_root(x)]

  def samegroup(self, x, y):
    return self.find_root(x)==self.find_root(y)

  def groupnum(self):
    N=len(self._parent)
    ans=0
    for i in range(N):
      if self.find_root(i)==i:
        ans+=1
    return ans

n,m=map(int,input().split())
UFa=UF(n)
ans=[1]*n
member=[{i} for i in range(n)]
mod=10**9+7
inv2=pow(2,mod-2,mod)

for i in range(m):
  x,y=map(int,input().split())
  X=UFa.size(x-1)
  Y=UFa.size(y-1)
  
  if X==Y:
    rx=UFa.find_root(x-1)
    ry=UFa.find_root(y-1)
    if rx!=ry:
      UFa.unite(x-1,y-1)
      r=UFa.find_root(x-1)
      for j in member[ry]:
        member[rx].add(j)
      member[ry]=set()
      for j in member[r]:
        ans[j]*=inv2
        ans[j]%=mod
  
  elif X>Y:
    rx=UFa.find_root(x-1)
    ry=UFa.find_root(y-1)
    for j in member[ry]:
      ans[j]=0
    UFa.unite(x-1,y-1)
    r=UFa.find_root(x-1)
    for j in member[ry]:
      member[rx].add(j)
    member[ry]=set()

  else:
    rx=UFa.find_root(x-1)
    ry=UFa.find_root(y-1)
    for j in member[rx]:
      ans[j]=0
    UFa.unite(x-1,y-1)
    r=UFa.find_root(x-1)
    for j in member[rx]:
      member[ry].add(j)
    member[rx]=set()
  
for i in range(n):
  print(ans[i])
0