結果

問題 No.1390 Get together
ユーザー rlangevinrlangevin
提出日時 2023-01-18 19:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 129,340 KB
最終ジャッジ日時 2024-06-11 20:12:14
合計ジャッジ時間 7,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,480 KB
testcase_01 AC 32 ms
52,480 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 71 ms
76,800 KB
testcase_04 AC 63 ms
74,112 KB
testcase_05 AC 68 ms
77,184 KB
testcase_06 AC 60 ms
74,112 KB
testcase_07 AC 61 ms
74,624 KB
testcase_08 AC 61 ms
74,356 KB
testcase_09 AC 70 ms
77,568 KB
testcase_10 AC 33 ms
52,736 KB
testcase_11 AC 33 ms
52,224 KB
testcase_12 AC 33 ms
51,968 KB
testcase_13 AC 33 ms
52,480 KB
testcase_14 AC 34 ms
52,736 KB
testcase_15 AC 32 ms
52,352 KB
testcase_16 AC 141 ms
104,908 KB
testcase_17 AC 199 ms
129,340 KB
testcase_18 AC 123 ms
94,104 KB
testcase_19 AC 313 ms
117,948 KB
testcase_20 AC 302 ms
124,652 KB
testcase_21 AC 307 ms
125,020 KB
testcase_22 AC 210 ms
110,196 KB
testcase_23 AC 222 ms
110,148 KB
testcase_24 AC 227 ms
110,340 KB
testcase_25 AC 297 ms
116,440 KB
testcase_26 AC 280 ms
117,032 KB
testcase_27 AC 296 ms
117,072 KB
testcase_28 AC 309 ms
117,348 KB
testcase_29 AC 287 ms
117,608 KB
testcase_30 AC 287 ms
117,236 KB
testcase_31 AC 276 ms
117,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]

N, M = map(int, readline().split())
U = UnionFind(M)
L = [[] for i in range(N)]
for i in range(N):
    b, c = map(int, readline().split())
    b, c = b - 1, c - 1
    L[c].append(b)
    
for i in range(N):
    for j in range(len(L[i]) - 1):
        U.union(L[i][j], L[i][j + 1])
S = set()
for i in range(M):
    S.add(U.find(i))
print(M - len(S))
0