結果

問題 No.1451 集団登校
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-15 15:49:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,508 KB
最終ジャッジ日時 2024-11-07 03:30:44
合計ジャッジ時間 10,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 708 ms
59,508 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 380 ms
38,272 KB
testcase_11 AC 250 ms
38,272 KB
testcase_12 AC 326 ms
35,200 KB
testcase_13 AC 623 ms
42,508 KB
testcase_14 AC 740 ms
39,364 KB
testcase_15 AC 350 ms
29,268 KB
testcase_16 AC 526 ms
38,000 KB
testcase_17 AC 369 ms
12,160 KB
testcase_18 AC 209 ms
21,888 KB
testcase_19 AC 140 ms
27,136 KB
testcase_20 AC 759 ms
40,004 KB
testcase_21 AC 256 ms
11,392 KB
testcase_22 AC 164 ms
15,104 KB
testcase_23 AC 86 ms
10,752 KB
testcase_24 AC 365 ms
37,504 KB
testcase_25 AC 343 ms
27,508 KB
testcase_26 AC 526 ms
38,116 KB
testcase_27 AC 508 ms
24,924 KB
testcase_28 AC 197 ms
17,632 KB
testcase_29 AC 367 ms
26,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=1000000007
class UnionFind:
    def __init__(self,n):
        self.par=[-1 for i in range(n)]
        self.ans=[1 for i in range(n)]
        self.st=[{i} for i in range(n)]
    def find(self,x):
        if self.par[x]<0:
            return x
        else:
            self.par[x]=self.find(self.par[x])
            return self.par[x]
    def unite(self,x,y):
        x=self.find(x)
        y=self.find(y)
        if x!=y:
            if self.par[x]>self.par[y]:
                x,y=y,x
            if self.par[x]==self.par[y]:
                for i in self.st[x]:
                    self.ans[i]*=500000004
                    self.ans[i]%=mod
                for i in self.st[y]:
                    self.ans[i]*=500000004
                    self.ans[i]%=mod
            else:
                for i in self.st[y]:
                    self.ans[i]=0
            self.st[x]|=self.st[y]
            self.par[x]+=self.par[y]
            self.par[y]=x
N,M=map(int,input().split())
UF=UnionFind(N)
for i in range(M):
    A,B=map(int,input().split())
    UF.unite(A-1,B-1)
for i in range(N):
    print(UF.ans[i])
0