結果

問題 No.1390 Get together
ユーザー ayaoniayaoni
提出日時 2021-02-12 21:28:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-07-19 20:19:09
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 74 ms
73,344 KB
testcase_04 AC 69 ms
73,984 KB
testcase_05 AC 70 ms
73,856 KB
testcase_06 AC 67 ms
73,484 KB
testcase_07 AC 65 ms
71,168 KB
testcase_08 AC 64 ms
70,784 KB
testcase_09 AC 77 ms
76,800 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 37 ms
52,480 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 141 ms
93,824 KB
testcase_17 AC 236 ms
102,528 KB
testcase_18 AC 138 ms
94,080 KB
testcase_19 AC 304 ms
97,024 KB
testcase_20 AC 298 ms
97,280 KB
testcase_21 AC 329 ms
97,280 KB
testcase_22 AC 219 ms
96,256 KB
testcase_23 AC 236 ms
96,344 KB
testcase_24 AC 232 ms
96,256 KB
testcase_25 AC 315 ms
97,152 KB
testcase_26 AC 310 ms
97,956 KB
testcase_27 AC 307 ms
97,792 KB
testcase_28 AC 302 ms
97,536 KB
testcase_29 AC 297 ms
97,628 KB
testcase_30 AC 300 ms
97,152 KB
testcase_31 AC 304 ms
97,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


class UnionFind:
    def __init__(self,n):
        self.par = [i for i in range(n+1)]  # 親のノード番号
        self.rank = [0]*(n+1)

    def find(self,x):  # xの根のノード番号
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def same_check(self,x,y):  # x,yが同じグループか否か
        return self.find(x) == self.find(y)

    def unite(self,x,y):  # x,yの属するグループの併合
        x = self.find(x)
        y = self.find(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


N,M = MI()
UF = UnionFind(M)

color = [[] for _ in range(N+1)]
for _ in range(N):
    b,c = MI()
    color[c].append(b)

ans = 0
for i in range(1,N+1):
    X = color[i]
    if X:
        for j in range(len(X)-1):
            b0,b1 = X[j],X[j+1]
            if not UF.same_check(b0,b1):
                ans += 1
                UF.unite(b0,b1)

print(ans)
0