結果

問題 No.1451 集団登校
ユーザー googol_S0googol_S0
提出日時 2021-03-31 14:30:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 907 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 165,628 KB
最終ジャッジ日時 2024-12-14 19:11:18
合計ジャッジ時間 17,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,852 KB
testcase_01 AC 39 ms
139,756 KB
testcase_02 AC 40 ms
59,952 KB
testcase_03 AC 39 ms
53,216 KB
testcase_04 AC 39 ms
53,204 KB
testcase_05 AC 39 ms
52,536 KB
testcase_06 AC 38 ms
53,176 KB
testcase_07 AC 39 ms
52,892 KB
testcase_08 AC 149 ms
94,788 KB
testcase_09 AC 39 ms
52,528 KB
testcase_10 AC 132 ms
88,912 KB
testcase_11 AC 86 ms
93,088 KB
testcase_12 AC 137 ms
88,060 KB
testcase_13 AC 278 ms
90,528 KB
testcase_14 TLE -
testcase_15 AC 496 ms
84,136 KB
testcase_16 AC 817 ms
89,576 KB
testcase_17 AC 129 ms
77,100 KB
testcase_18 AC 154 ms
80,964 KB
testcase_19 AC 52 ms
72,592 KB
testcase_20 TLE -
testcase_21 AC 86 ms
76,596 KB
testcase_22 AC 326 ms
78,000 KB
testcase_23 AC 54 ms
66,348 KB
testcase_24 AC 121 ms
89,768 KB
testcase_25 AC 977 ms
83,632 KB
testcase_26 AC 521 ms
90,180 KB
testcase_27 TLE -
testcase_28 AC 627 ms
79,260 KB
testcase_29 AC 1,644 ms
165,628 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]
  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