結果

問題 No.1451 集団登校
ユーザー googol_S0googol_S0
提出日時 2021-03-31 14:33:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 925 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-05-08 14:24:25
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 151 ms
94,976 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 131 ms
88,832 KB
testcase_11 AC 86 ms
92,884 KB
testcase_12 AC 136 ms
87,936 KB
testcase_13 AC 172 ms
91,008 KB
testcase_14 AC 187 ms
88,832 KB
testcase_15 AC 146 ms
84,736 KB
testcase_16 AC 171 ms
89,472 KB
testcase_17 AC 107 ms
77,380 KB
testcase_18 AC 127 ms
81,024 KB
testcase_19 AC 55 ms
71,296 KB
testcase_20 AC 191 ms
89,216 KB
testcase_21 AC 83 ms
76,544 KB
testcase_22 AC 110 ms
77,768 KB
testcase_23 AC 53 ms
64,256 KB
testcase_24 AC 127 ms
90,368 KB
testcase_25 AC 150 ms
83,840 KB
testcase_26 AC 175 ms
89,856 KB
testcase_27 AC 154 ms
83,072 KB
testcase_28 AC 120 ms
79,360 KB
testcase_29 AC 147 ms
83,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.buffer.readline
belong=list()
group=list()
ANS=[]
mod=10**9+7
half=(mod+1)>>1
def init(X):
  global belong
  global group
  global ANS
  belong=list(range(X))
  group=[[i] for i in range(X)]
  ANS=[1]*X

def unite(x,y):
  if len(group[belong[x]])<len(group[belong[y]]):
    x,y=y,x
  if belong[x]==belong[y]:
    return True
  v=1
  z=belong[y]
  if len(group[belong[x]])==len(group[z]):
    v=half
  else:
    for i in range(len(group[z])):
      ANS[group[z][i]]=0
  for i in range(len(group[z])):
    belong[group[z][-1]]=belong[x]
    group[belong[x]].append(group[z][-1])
    del group[z][-1]
  if v==half:
    for i in range(len(group[belong[x]])):
      ANS[group[belong[x]][i]]=ANS[group[belong[x]][i]]*v%mod
  return False

N,M=map(int,input().split())
init(N)
for i in range(M):
  a,b=map(int,input().split())
  unite(a-1,b-1)
for i in range(N):
  ANS[i]=str(ANS[i])
print('\n'.join(ANS))
0