結果

問題 No.1390 Get together
ユーザー hir355hir355
提出日時 2021-02-12 22:42:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,656 KB
最終ジャッジ日時 2024-07-19 23:37:05
合計ジャッジ時間 8,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 100 ms
76,800 KB
testcase_04 AC 107 ms
77,184 KB
testcase_05 AC 104 ms
77,312 KB
testcase_06 AC 95 ms
77,184 KB
testcase_07 AC 96 ms
77,164 KB
testcase_08 AC 98 ms
76,984 KB
testcase_09 AC 100 ms
77,184 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 43 ms
52,096 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 209 ms
98,316 KB
testcase_17 AC 279 ms
99,968 KB
testcase_18 AC 202 ms
98,056 KB
testcase_19 AC 398 ms
101,656 KB
testcase_20 AC 379 ms
100,788 KB
testcase_21 AC 386 ms
101,244 KB
testcase_22 AC 299 ms
100,224 KB
testcase_23 AC 314 ms
100,096 KB
testcase_24 AC 327 ms
100,224 KB
testcase_25 AC 390 ms
101,176 KB
testcase_26 AC 376 ms
101,136 KB
testcase_27 AC 393 ms
100,772 KB
testcase_28 AC 374 ms
100,988 KB
testcase_29 AC 401 ms
101,300 KB
testcase_30 AC 382 ms
100,624 KB
testcase_31 AC 368 ms
100,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n + 1)
        self.size = [1] * (n + 1)
 
    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
 
    # 併合
    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
 
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n, m = map(int, input().split())
a = [[] for _ in range(n)]
uf = UnionFind(m)
for i in range(n):
    b, c = map(int, input().split())
    a[c - 1].append(b - 1)
for i in range(n):
    for j in range(len(a[i]) - 1):
        uf.unite(a[i][j], a[i][j + 1])
d = [0] * m
ans = 0
for i in range(m):
    i = uf.find(i)
    if d[i]:
        continue
    ans += uf.size[i] - 1
    d[i] = 1
print(ans)
0