結果

問題 No.1390 Get together
ユーザー Shiro YangShiro Yang
提出日時 2024-01-27 17:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 98,944 KB
最終ジャッジ日時 2024-09-28 09:44:25
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 101 ms
76,928 KB
testcase_04 AC 89 ms
76,416 KB
testcase_05 AC 98 ms
76,800 KB
testcase_06 AC 88 ms
76,512 KB
testcase_07 AC 94 ms
76,672 KB
testcase_08 AC 90 ms
76,544 KB
testcase_09 AC 96 ms
77,440 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 37 ms
52,608 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 197 ms
94,768 KB
testcase_17 AC 282 ms
98,944 KB
testcase_18 AC 190 ms
94,884 KB
testcase_19 AC 364 ms
97,280 KB
testcase_20 AC 367 ms
97,136 KB
testcase_21 AC 389 ms
98,200 KB
testcase_22 AC 278 ms
96,888 KB
testcase_23 AC 289 ms
96,832 KB
testcase_24 AC 299 ms
96,640 KB
testcase_25 AC 364 ms
97,856 KB
testcase_26 AC 357 ms
97,376 KB
testcase_27 AC 352 ms
97,408 KB
testcase_28 AC 346 ms
97,152 KB
testcase_29 AC 342 ms
97,408 KB
testcase_30 AC 388 ms
97,780 KB
testcase_31 AC 353 ms
97,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parent = [-1] * n
        self.size = [1] * n
    def find(self, x):
        if self.parent[x] == -1: return x
        self.parent[x] = self.find(self.parent[x])
        return self.parent[x]
    def union(self, x, y):
        px = self.find(x)
        py = self.find(y)
        if px == py: return
        if self.size[px] < self.size[py]: px, py = py, px
        self.parent[py] = px
        self.size[px] += self.size[py]
    def same(self, x, y):
        return self.find(x) == self.find(y)
    def get_size(self, x):
        return self.size[self.find(x)]
    def get_all_groups(self):
        n = len(self.parent)
        groups = [[] for _ in range(n)]
        for i in range(n):
            groups[self.find(i)].append(i)
        return list(filter(lambda x: x, groups))

N, M = map(int, input().split())
G = [[] for _ in range(N+1)]
for _ in range(N):
    b, c = map(int, input().split())
    G[c].append(b)

uf = UnionFind(M+1)
ans = 0
for col in G:
    for box in col:
        if not uf.same(col[0], box):
            uf.union(col[0], box)
            ans += 1
print(ans)
0