結果

問題 No.1390 Get together
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-14 13:29:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 117,532 KB
最終ジャッジ日時 2024-07-21 21:53:03
合計ジャッジ時間 10,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,376 KB
testcase_01 AC 36 ms
53,164 KB
testcase_02 AC 36 ms
52,960 KB
testcase_03 AC 88 ms
77,620 KB
testcase_04 AC 81 ms
77,524 KB
testcase_05 AC 83 ms
77,228 KB
testcase_06 AC 78 ms
77,528 KB
testcase_07 AC 75 ms
77,604 KB
testcase_08 AC 80 ms
77,080 KB
testcase_09 AC 90 ms
77,696 KB
testcase_10 AC 36 ms
52,516 KB
testcase_11 AC 36 ms
53,836 KB
testcase_12 AC 36 ms
52,864 KB
testcase_13 AC 36 ms
53,396 KB
testcase_14 AC 35 ms
53,196 KB
testcase_15 AC 34 ms
53,288 KB
testcase_16 AC 238 ms
110,484 KB
testcase_17 AC 223 ms
110,920 KB
testcase_18 AC 196 ms
114,180 KB
testcase_19 AC 504 ms
117,532 KB
testcase_20 AC 483 ms
112,140 KB
testcase_21 AC 456 ms
112,936 KB
testcase_22 AC 368 ms
115,716 KB
testcase_23 AC 371 ms
116,168 KB
testcase_24 AC 385 ms
116,220 KB
testcase_25 AC 454 ms
116,140 KB
testcase_26 AC 464 ms
116,900 KB
testcase_27 AC 468 ms
116,156 KB
testcase_28 AC 480 ms
116,288 KB
testcase_29 AC 437 ms
116,232 KB
testcase_30 AC 455 ms
116,080 KB
testcase_31 AC 482 ms
116,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [0]*n

    def Find(self, x):
        if self.par[x] < 0:
            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:
            if self.rank[x] < self.rank[y]:
                self.par[y] += self.par[x]
                self.par[x] = y
            else:
                self.par[x] += self.par[y]
                self.par[y] = x
                if self.rank[x] == self.rank[y]:
                    self.rank[x] += 1

    def Same(self, x, y):
        return self.Find(x) == self.Find(y)

    def Size(self, x):
        return -self.par[self.Find(x)]

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())

B = [[] for i in range(m)]
C = [[] for i in range(n)]

for i in range(n):
    b, c = map(int, input().split())
    b, c = b-1, c-1
    B[b].append(i)
    C[c].append(i)

uf = UnionFind(n)
for i in range(m):
    if len(B[i]) <= 1:
        continue
    for j in range(len(B[i])-1):
        uf.Unite(B[i][j], B[i][j+1])
ans = 0
for i in range(n):
    if len(C[i]) <= 1:
        continue
    for j in range(1, len(C[i])):
        if not uf.Same(C[i][0], C[i][j]):
            ans += 1
            uf.Unite(C[i][0], C[i][j])
print(ans)
0