結果

問題 No.1451 集団登校
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-05-03 22:50:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,209 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-07-22 13:04:24
合計ジャッジ時間 7,274 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 46 ms
52,324 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 42 ms
52,480 KB
testcase_08 AC 187 ms
93,440 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 WA -
testcase_11 AC 95 ms
86,984 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 369 ms
90,112 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 175 ms
77,136 KB
testcase_18 WA -
testcase_19 AC 79 ms
82,432 KB
testcase_20 AC 368 ms
89,984 KB
testcase_21 AC 128 ms
76,160 KB
testcase_22 AC 184 ms
78,592 KB
testcase_23 AC 85 ms
76,032 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 291 ms
83,180 KB
testcase_28 AC 218 ms
79,528 KB
testcase_29 AC 286 ms
83,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
        self.leader = [[i] for i in range(n)]
        self.prob = [1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        if self.uf[x] == self.uf[y]:
            self.prob[x] *= 500000004
            self.prob[x] %= mod
            self.leader[x] += self.leader[y]
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        self.leader[y] = []
        self.prob[y] = 0
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]

n,m = map(int,input().split())
uf = Unionfind(n)
mod = 10**9+7
for i in range(m):
    a,b = map(int,input().split())
    uf.union(a-1,b-1)

ans = [0]*n
for i in range(n):
    if uf.find(i) != i:
        continue
    for j in uf.leader[i]:
        ans[j] = uf.prob[i]
for i in ans:
    print(i)
0