結果

問題 No.1390 Get together
ユーザー とりゐとりゐ
提出日時 2022-05-28 16:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 962 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 112,656 KB
最終ジャッジ日時 2024-09-20 22:32:29
合計ジャッジ時間 10,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,148 KB
testcase_01 AC 42 ms
53,976 KB
testcase_02 AC 47 ms
54,444 KB
testcase_03 AC 93 ms
77,312 KB
testcase_04 AC 87 ms
77,396 KB
testcase_05 AC 89 ms
77,248 KB
testcase_06 AC 88 ms
77,172 KB
testcase_07 AC 88 ms
77,036 KB
testcase_08 AC 90 ms
77,088 KB
testcase_09 AC 95 ms
77,296 KB
testcase_10 AC 42 ms
55,104 KB
testcase_11 AC 42 ms
55,296 KB
testcase_12 AC 43 ms
54,820 KB
testcase_13 AC 44 ms
54,836 KB
testcase_14 AC 43 ms
54,668 KB
testcase_15 AC 42 ms
54,752 KB
testcase_16 AC 211 ms
97,084 KB
testcase_17 AC 337 ms
112,656 KB
testcase_18 AC 199 ms
95,004 KB
testcase_19 AC 421 ms
103,912 KB
testcase_20 AC 413 ms
107,508 KB
testcase_21 AC 431 ms
107,968 KB
testcase_22 AC 316 ms
101,024 KB
testcase_23 AC 325 ms
100,532 KB
testcase_24 AC 329 ms
100,636 KB
testcase_25 AC 410 ms
103,700 KB
testcase_26 AC 412 ms
103,940 KB
testcase_27 AC 415 ms
104,312 KB
testcase_28 AC 408 ms
101,140 KB
testcase_29 AC 406 ms
104,048 KB
testcase_30 AC 404 ms
103,680 KB
testcase_31 AC 415 ms
104,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#UnionFind
from collections import defaultdict

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

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

n,m=map(int,input().split())
uf=UnionFind(m+1)
color=[[] for i in range(n+1)]
for _ in range(n):
  b,c=map(int,input().split())
  color[c].append(b)

for i in range(n+1):
  for j in color[i][1:]:
    uf.union(color[i][0],j)

ans=0
for i in uf.roots():
  ans+=-uf.parents[i]-1

print(ans)
0