結果

問題 No.556 仁義なきサルたち
ユーザー momotaros300momotaros300
提出日時 2019-09-07 20:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,212 KB
最終ジャッジ日時 2024-06-27 04:20:19
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,324 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 43 ms
52,992 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 44 ms
59,136 KB
testcase_08 AC 50 ms
59,520 KB
testcase_09 AC 53 ms
62,976 KB
testcase_10 AC 63 ms
66,432 KB
testcase_11 AC 71 ms
71,296 KB
testcase_12 AC 73 ms
71,296 KB
testcase_13 AC 59 ms
67,456 KB
testcase_14 AC 114 ms
77,568 KB
testcase_15 AC 139 ms
77,440 KB
testcase_16 AC 100 ms
77,400 KB
testcase_17 AC 129 ms
77,568 KB
testcase_18 AC 188 ms
79,212 KB
testcase_19 AC 91 ms
77,184 KB
testcase_20 AC 90 ms
77,184 KB
testcase_21 AC 91 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
query=[tuple(map(int,input().split())) for i in range(m)]


class UnionFind:
    __slots__ = ['id', 'size']

    def __init__(self, n):
        self.id = [-1] * n
        self.size = n

    def root(self, x):
        if self.id[x] < 0:
            return x
        else:
            self.id[x] = self.root(self.id[x])
            return self.id[x]

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

    def union(self, x, y, b):
        s1, s2 = self.root(x), self.root(y)
        if b==0:
            if s1 != s2:
                if s1 <= s2:
                    self.id[s1] += self.id[s2]
                    self.id[s2] = s1
                else:
                    self.id[s2] += self.id[s1]
                    self.id[s1] = s2
                self.size -= 1
            return True
        else:
            self.id[s1] += self.id[s2]
            self.id[s2] = s1            
        return False

            
uf = UnionFind(n)

for s,t in query:
    # print(s,t)
    # print(uf.root(s-1),uf.root(t-1))
    # for i in range(n):
    #    print(uf.root(i)+1, end='')
    # print()
    if uf.id[uf.root(s-1)] == uf.id[uf.root(t-1)]:
        uf.union(uf.root(s-1),uf.root(t-1),0)
    elif uf.id[uf.root(s-1)]<uf.id[uf.root(t-1)]:
        uf.union(uf.root(s-1),uf.root(t-1),1)
    else:
        uf.union(uf.root(t-1),uf.root(s-1),1)

for i in range(n):
    print(uf.root(i)+1)

    
0