結果

問題 No.1390 Get together
ユーザー kohei2019kohei2019
提出日時 2021-02-12 21:37:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 1,621 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 96,660 KB
最終ジャッジ日時 2024-07-19 20:37:50
合計ジャッジ時間 8,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 93 ms
76,672 KB
testcase_04 AC 93 ms
76,800 KB
testcase_05 AC 92 ms
76,672 KB
testcase_06 AC 92 ms
76,288 KB
testcase_07 AC 87 ms
76,544 KB
testcase_08 AC 89 ms
76,928 KB
testcase_09 AC 91 ms
77,056 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 192 ms
93,240 KB
testcase_17 AC 303 ms
94,720 KB
testcase_18 AC 195 ms
93,372 KB
testcase_19 AC 377 ms
96,476 KB
testcase_20 AC 369 ms
96,448 KB
testcase_21 AC 372 ms
96,660 KB
testcase_22 AC 277 ms
95,232 KB
testcase_23 AC 301 ms
95,360 KB
testcase_24 AC 304 ms
95,488 KB
testcase_25 AC 367 ms
96,228 KB
testcase_26 AC 364 ms
96,380 KB
testcase_27 AC 375 ms
96,240 KB
testcase_28 AC 388 ms
96,316 KB
testcase_29 AC 372 ms
96,276 KB
testcase_30 AC 368 ms
96,364 KB
testcase_31 AC 367 ms
96,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#unionfind経路圧縮あり
class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = list(range(n))

    def find(self, x):
        if self.parents[x] == x:
            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 self.parents[x] > self.parents[y]:
            x, y = y, x
            
        if x == y:
            return

        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 == i]

    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())

N,M = map(int,input().split())
lsN = [[] for i in range(N)]
for i in range(N):
    b,c = map(int,input().split())
    b -= 1
    c -= 1
    lsN[c].append(b)
#合わせるunionfind,unionした回数
UF = UnionFind(M)
ans = 0
for i in range(N):
    if len(lsN[i]) <= 1:
        continue
    
    for j in range(len(lsN[i])-1):
        if UF.find(lsN[i][j]) == UF.find(lsN[i][j+1]):
            continue
        ans += 1
        UF.union(lsN[i][j],lsN[i][j+1])
print(ans)
0