結果

問題 No.556 仁義なきサルたち
ユーザー kohei2019kohei2019
提出日時 2022-02-09 20:37:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 1,530 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 78,508 KB
最終ジャッジ日時 2024-06-25 00:46:03
合計ジャッジ時間 2,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,992 KB
testcase_05 AC 39 ms
53,248 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 42 ms
54,528 KB
testcase_09 AC 49 ms
61,408 KB
testcase_10 AC 58 ms
66,688 KB
testcase_11 AC 62 ms
70,464 KB
testcase_12 AC 66 ms
70,784 KB
testcase_13 AC 58 ms
67,712 KB
testcase_14 AC 106 ms
77,564 KB
testcase_15 AC 125 ms
77,952 KB
testcase_16 AC 104 ms
77,156 KB
testcase_17 AC 130 ms
78,104 KB
testcase_18 AC 170 ms
78,508 KB
testcase_19 AC 91 ms
77,344 KB
testcase_20 AC 91 ms
77,016 KB
testcase_21 AC 91 ms
77,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = list(range(n))
        self.size0 = [1]*(n)
        self.roots = n

    def find(self, x):
        if self.parents[x] == x:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if self.parents[x] > self.parents[y]:
            x, y = y, x
        if self.size(x) < self.size(y):
            x,y = y,x
        if x == y:
            return
        self.size0[x] += self.size0[y]
        self.roots -= 1
        self.parents[y] = x

    def size(self, x):#O(1)xが含まれる集合の要素数
        return self.size0[self.find(x)]

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

    def membersf(self, x):#取り出し部分はO(N)
        p = self.find(x)
        ret = []
        for i in range(self.n):
            if self.find(i) == p:
                ret.append(i)
        return ret

    def rootsf(self):#根の要素O(N)
        ret = []
        for i in range(self.n):
            if self.find(i) == i:
                ret.append(i)
        return ret

    def group_count(self):#根の数O(1)
        return self.roots

N,M = map(int,input().split())
lsAB = [tuple(map(lambda x:int(x)-1,input().split())) for i in range(M)]
UF = UnionFind(N)
for i in range(M):
    a,b = lsAB[i]
    UF.union(a,b)

for i in range(N):
    print(UF.find(i)+1)
0