結果

問題 No.1390 Get together
ユーザー tatyamtatyam
提出日時 2020-09-06 10:37:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 1,130 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 80,892 KB
最終ジャッジ日時 2024-11-30 10:34:12
合計ジャッジ時間 7,096 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 39 ms
52,532 KB
testcase_02 AC 39 ms
52,604 KB
testcase_03 AC 105 ms
76,540 KB
testcase_04 AC 93 ms
76,492 KB
testcase_05 AC 106 ms
76,396 KB
testcase_06 AC 92 ms
76,700 KB
testcase_07 AC 93 ms
76,408 KB
testcase_08 AC 97 ms
76,400 KB
testcase_09 AC 102 ms
76,504 KB
testcase_10 AC 38 ms
53,292 KB
testcase_11 AC 39 ms
52,952 KB
testcase_12 AC 39 ms
52,888 KB
testcase_13 AC 38 ms
53,200 KB
testcase_14 AC 39 ms
52,600 KB
testcase_15 AC 38 ms
53,576 KB
testcase_16 AC 196 ms
79,760 KB
testcase_17 AC 204 ms
79,528 KB
testcase_18 AC 198 ms
79,380 KB
testcase_19 AC 311 ms
80,144 KB
testcase_20 AC 313 ms
80,472 KB
testcase_21 AC 317 ms
80,592 KB
testcase_22 AC 258 ms
79,792 KB
testcase_23 AC 259 ms
79,908 KB
testcase_24 AC 258 ms
79,864 KB
testcase_25 AC 301 ms
80,268 KB
testcase_26 AC 294 ms
80,020 KB
testcase_27 AC 298 ms
80,196 KB
testcase_28 AC 309 ms
80,336 KB
testcase_29 AC 298 ms
80,024 KB
testcase_30 AC 300 ms
80,084 KB
testcase_31 AC 292 ms
80,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, size):
        self.data = [-1] * size
    def root(self, x):
        if self.data[x] < 0:
            return x
        ans = self.root(self.data[x])
        self.data[x] = ans
        return ans
    def unite(self, x, y):
        x = self.root(x)
        y = self.root(y)
        if x == y:
            return False
        if self.data[x] > self.data[y]:
            x, y = y, x
        self.data[x] += self.data[y]
        self.data[y] = x
        return True
    def is_root(self, x):
        return self.data[x] < 0
    def size(self, x):
        return -self.data[self.root(x)]

n, m = map(int, input().split(' '))
assert 1 <= n <= 200000
assert 1 <= m <= 200000

uf = UnionFind(n + m) # n + i に色 i の超頂点をおく
for i in range(n):
    b, c = map(int, input().split(' '))
    assert 1 <= b <= m
    assert 1 <= c <= n
    b -= 1
    c -= 1
    uf.unite(b, m + c)

ans = 0
for i in range(n + m):
    if uf.is_root(i):
        ans += uf.size(i) - 1
for i in range(m, m + n): # 超頂点の分足しすぎるので、引く
    if uf.size(i) > 1:
        ans -= 1

print(ans)
0