結果

問題 No.1451 集団登校
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-11 11:58:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 641 ms / 2,000 ms
コード長 1,603 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 94,124 KB
最終ジャッジ日時 2024-06-27 07:32:39
合計ジャッジ時間 8,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,984 KB
testcase_01 AC 33 ms
52,940 KB
testcase_02 AC 32 ms
53,196 KB
testcase_03 AC 32 ms
53,448 KB
testcase_04 AC 32 ms
52,616 KB
testcase_05 AC 35 ms
52,652 KB
testcase_06 AC 35 ms
54,288 KB
testcase_07 AC 32 ms
52,456 KB
testcase_08 AC 144 ms
94,084 KB
testcase_09 AC 33 ms
53,648 KB
testcase_10 AC 211 ms
88,748 KB
testcase_11 AC 77 ms
86,320 KB
testcase_12 AC 315 ms
90,688 KB
testcase_13 AC 424 ms
92,376 KB
testcase_14 AC 325 ms
87,204 KB
testcase_15 AC 479 ms
91,052 KB
testcase_16 AC 498 ms
93,104 KB
testcase_17 AC 204 ms
78,296 KB
testcase_18 AC 314 ms
85,316 KB
testcase_19 AC 65 ms
81,760 KB
testcase_20 AC 641 ms
94,124 KB
testcase_21 AC 151 ms
76,760 KB
testcase_22 AC 238 ms
80,284 KB
testcase_23 AC 86 ms
76,220 KB
testcase_24 AC 227 ms
89,032 KB
testcase_25 AC 404 ms
86,840 KB
testcase_26 AC 353 ms
89,628 KB
testcase_27 AC 566 ms
88,840 KB
testcase_28 AC 292 ms
81,208 KB
testcase_29 AC 450 ms
88,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.par = [-1] * self.n
    def find(self, x):
        r = x
        while not self.par[r] < 0:
            r = self.par[r]
        t = x
        while t != r:
            m = t
            t = self.par[t]
            self.par[m] = r
        return r

    def unite(self, x, y):
        p = self.find(x)
        q = self.find(y)
        if p == q:
            return None
        if self.par[p] >= self.par[q]:
            p, q = q, p
        self.par[p] += self.par[q]
        self.par[q] = p

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def size(self, x):
        return -self.par[self.find(x)]


#拡張Euclidの互除法
def extgcd(a, b, d = 0):
    g = a
    if b == 0:
        x, y = 1, 0
    else:
        x, y, g = extgcd(b, a % b)
        x, y = y, x - a // b * y
    return x, y, g

#mod p における逆元
def invmod(a, p):
    x, y, g = extgcd(a, p)
    x %= p
    return x

mod = 10 ** 9 + 7
n, m = map(int, input().split())
UF = UnionFind(n)
g = [[i] for i in range(n)]
ans = [1] * n
inv2 = invmod(2, mod)

for _ in range(m):
    a, b = map(int, input().split())
    a -= 1; b -= 1
    if UF.same(a, b):
        continue
    if UF.size(a) > UF.size(b):
        a, b = b, a
    pa, pb = UF.find(a), UF.find(b)
    if UF.size(a) < UF.size(b):
        for i in g[pa]:
            ans[i] = 0
    else:
        for i in g[pa]:
            g[pb].append(i)
        
        for i in g[pb]:
            ans[i] *= inv2
            ans[i] %= mod
    UF.unite(a, b)
    
for i in ans: print(i)
0