結果

問題 No.1390 Get together
ユーザー roarisroaris
提出日時 2021-02-13 00:03:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 640 ms / 2,000 ms
コード長 1,481 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 143,968 KB
最終ジャッジ日時 2024-07-20 01:58:10
合計ジャッジ時間 11,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,016 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 114 ms
77,824 KB
testcase_04 AC 102 ms
77,568 KB
testcase_05 AC 109 ms
78,044 KB
testcase_06 AC 101 ms
77,508 KB
testcase_07 AC 91 ms
77,676 KB
testcase_08 AC 93 ms
77,824 KB
testcase_09 AC 106 ms
78,208 KB
testcase_10 AC 41 ms
54,272 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 42 ms
53,760 KB
testcase_13 AC 41 ms
54,272 KB
testcase_14 AC 41 ms
53,760 KB
testcase_15 AC 43 ms
53,888 KB
testcase_16 AC 308 ms
125,724 KB
testcase_17 AC 397 ms
107,396 KB
testcase_18 AC 279 ms
143,968 KB
testcase_19 AC 640 ms
131,168 KB
testcase_20 AC 556 ms
110,816 KB
testcase_21 AC 558 ms
111,328 KB
testcase_22 AC 524 ms
128,384 KB
testcase_23 AC 506 ms
134,472 KB
testcase_24 AC 500 ms
128,284 KB
testcase_25 AC 631 ms
131,600 KB
testcase_26 AC 631 ms
131,332 KB
testcase_27 AC 630 ms
131,608 KB
testcase_28 AC 613 ms
131,236 KB
testcase_29 AC 626 ms
132,120 KB
testcase_30 AC 630 ms
131,200 KB
testcase_31 AC 631 ms
130,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N, M = map(int, input().split())
color = [[] for _ in range(M)]
box = [[] for _ in range(N)]

for _ in range(N):
    b, c = map(int, input().split())
    color[b-1].append(c-1)
    box[c-1].append(b-1)

uf = Unionfind(N)

for i in range(M):
    for j in range(len(color[i])-1):
        uf.unite(color[i][j], color[i][j+1])

s = defaultdict(set)

for i in range(N):
    for b in box[i]:
        s[uf.root(i)].add(b)

ans = 0

for v in s.values():
    ans += len(v)-1

print(ans)
0