結果

問題 No.1390 Get together
ユーザー rei60rei60
提出日時 2021-02-20 16:31:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 113,064 KB
最終ジャッジ日時 2024-09-17 20:41:27
合計ジャッジ時間 9,730 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,168 KB
testcase_01 AC 32 ms
53,024 KB
testcase_02 AC 34 ms
54,364 KB
testcase_03 AC 60 ms
72,324 KB
testcase_04 AC 61 ms
72,056 KB
testcase_05 AC 57 ms
72,368 KB
testcase_06 AC 57 ms
72,444 KB
testcase_07 AC 54 ms
69,908 KB
testcase_08 AC 54 ms
69,556 KB
testcase_09 AC 59 ms
72,992 KB
testcase_10 AC 33 ms
53,124 KB
testcase_11 AC 36 ms
53,692 KB
testcase_12 AC 35 ms
53,408 KB
testcase_13 AC 32 ms
53,060 KB
testcase_14 AC 33 ms
54,132 KB
testcase_15 AC 34 ms
53,780 KB
testcase_16 AC 162 ms
102,656 KB
testcase_17 AC 388 ms
112,512 KB
testcase_18 AC 161 ms
96,256 KB
testcase_19 AC 440 ms
109,144 KB
testcase_20 AC 433 ms
113,064 KB
testcase_21 AC 454 ms
112,764 KB
testcase_22 AC 327 ms
104,536 KB
testcase_23 AC 337 ms
104,704 KB
testcase_24 AC 337 ms
105,448 KB
testcase_25 AC 431 ms
108,892 KB
testcase_26 AC 433 ms
109,100 KB
testcase_27 AC 441 ms
109,024 KB
testcase_28 AC 449 ms
109,232 KB
testcase_29 AC 425 ms
108,908 KB
testcase_30 AC 439 ms
108,640 KB
testcase_31 AC 435 ms
108,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 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):
        return {r: self.members(r) for r in self.roots()}

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())


import sys
input = lambda: sys.stdin.readline().rstrip()

N, M = map(int,input().split())
uf = UnionFind(M)
BC = [tuple(map(int,input().split())) for i in range(N)]
BC.sort(key=lambda x: x[1])
b,c = 0,0
for bc in BC:
    bb, cc = b, c
    b, c = bc    
    if c == cc:
        uf.union(b-1,bb-1)
print(M-uf.group_count())
0