結果

問題 No.1390 Get together
ユーザー kept1994kept1994
提出日時 2021-08-29 12:22:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 678 ms / 2,000 ms
コード長 2,297 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 126,076 KB
最終ジャッジ日時 2024-11-22 04:51:09
合計ジャッジ時間 12,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 48 ms
54,144 KB
testcase_02 AC 47 ms
54,144 KB
testcase_03 AC 135 ms
77,824 KB
testcase_04 AC 124 ms
77,184 KB
testcase_05 AC 127 ms
77,440 KB
testcase_06 AC 118 ms
77,312 KB
testcase_07 AC 122 ms
77,440 KB
testcase_08 AC 128 ms
77,696 KB
testcase_09 AC 136 ms
77,952 KB
testcase_10 AC 47 ms
53,888 KB
testcase_11 AC 48 ms
54,016 KB
testcase_12 AC 48 ms
54,272 KB
testcase_13 AC 48 ms
54,144 KB
testcase_14 AC 47 ms
53,888 KB
testcase_15 AC 47 ms
54,272 KB
testcase_16 AC 398 ms
119,048 KB
testcase_17 AC 397 ms
119,024 KB
testcase_18 AC 357 ms
125,304 KB
testcase_19 AC 659 ms
125,820 KB
testcase_20 AC 657 ms
122,292 KB
testcase_21 AC 678 ms
122,412 KB
testcase_22 AC 547 ms
125,528 KB
testcase_23 AC 551 ms
126,076 KB
testcase_24 AC 544 ms
125,408 KB
testcase_25 AC 635 ms
125,564 KB
testcase_26 AC 648 ms
125,828 KB
testcase_27 AC 633 ms
126,036 KB
testcase_28 AC 607 ms
125,424 KB
testcase_29 AC 636 ms
125,692 KB
testcase_30 AC 619 ms
125,424 KB
testcase_31 AC 658 ms
125,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, M = map(int, input().split())
    box = [[] for _ in range(M)]
    color = [[] for _ in range(N)]
    B, C = [], []
    for i in range(N):
        bb, cc = map(lambda i: int(i) - 1, input().split())
        box[bb].append(i)
        color[cc].append(i)
        B.append(bb)
        C.append(cc)
    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 0

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

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

        def size(self, x):
            return -self.parents[self.find(x)]

        def same(self, x, y):
            return self.find(x) == self.find(y)

        def members(self, x):
            root = self.find(x)
            return [i for i in range(self.n) if self.find(i) == root]

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

        def group_count(self):
            return len(self.roots())

        def all_group_members(self):
            group_members = defaultdict(list)
            for member in range(self.n):
                group_members[self.find(member)].append(member)
            return group_members

        def __str__(self):
            return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())
    uf = UnionFind(N)
    ans = 0
    for i in range(M):
        for j in range(len(box[i]) - 1):
            # print(box[i][j] + 1, box[i][j + 1] + 1)
            uf.union(box[i][j], box[i][j + 1])
    # print("---")
    for i in range(N):
        for j in range(len(color[i]) - 1):
            # print(color[i][j] + 1, color[i][j + 1] + 1)
            ans += uf.union(color[i][j], color[i][j + 1])
    # print(uf)
    print(ans)

    return

if __name__ == '__main__':
    main()
0