結果

問題 No.556 仁義なきサルたち
ユーザー roarisroaris
提出日時 2019-08-16 11:38:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 77,524 KB
最終ジャッジ日時 2024-09-22 01:43:10
合計ジャッジ時間 2,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 42 ms
52,864 KB
testcase_08 AC 45 ms
53,376 KB
testcase_09 AC 53 ms
60,544 KB
testcase_10 AC 60 ms
64,512 KB
testcase_11 AC 64 ms
67,072 KB
testcase_12 AC 62 ms
67,200 KB
testcase_13 AC 60 ms
66,304 KB
testcase_14 AC 103 ms
76,672 KB
testcase_15 AC 119 ms
76,800 KB
testcase_16 AC 96 ms
76,800 KB
testcase_17 AC 125 ms
76,708 KB
testcase_18 AC 151 ms
77,524 KB
testcase_19 AC 87 ms
76,284 KB
testcase_20 AC 86 ms
76,544 KB
testcase_21 AC 86 ms
76,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
    def __init__(self, N):
        self.par = [-1] * N
    
    def root(self, x):
        if self.par[x] < 0:
            return x
        
        self.par[x] = self.root(self.par[x])
        return self.par[x]
    
    def unite(self, x, y):
        rx, ry = self.root(x), self.root(y)
        
        if rx != ry:
            rx_num, ry_num = -self.par[rx], -self.par[ry]
            
            if rx_num > ry_num or (rx_num == ry_num and rx < ry):
                self.par[rx] += self.par[ry]
                self.par[ry] = rx
            elif ry_num > rx_num or (rx_num == ry_num and ry < rx):
                self.par[ry] += self.par[rx]
                self.par[rx] = ry
            
N, M = map(int, input().split())
uf = Unionfind(N)

for _ in range(M):
    Ai, Bi = map(int, input().split())
    uf.unite(Ai-1, Bi-1)

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