結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー stunniitastunniita
提出日時 2023-08-12 14:46:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 1,833 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-11-14 12:24:05
合計ジャッジ時間 6,783 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 420 ms
16,512 KB
testcase_04 AC 91 ms
14,336 KB
testcase_05 AC 307 ms
13,056 KB
testcase_06 AC 291 ms
15,872 KB
testcase_07 AC 325 ms
12,672 KB
testcase_08 AC 290 ms
16,640 KB
testcase_09 AC 397 ms
13,696 KB
testcase_10 AC 435 ms
16,000 KB
testcase_11 AC 361 ms
15,616 KB
testcase_12 AC 255 ms
14,592 KB
testcase_13 AC 138 ms
12,288 KB
testcase_14 AC 237 ms
13,696 KB
testcase_15 AC 306 ms
11,008 KB
testcase_16 AC 453 ms
14,848 KB
testcase_17 AC 160 ms
11,008 KB
testcase_18 AC 227 ms
14,848 KB
testcase_19 AC 73 ms
13,952 KB
testcase_20 AC 337 ms
11,008 KB
testcase_21 AC 159 ms
12,928 KB
testcase_22 AC 182 ms
11,520 KB
testcase_23 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Base code by algo-method (URL-> ttps://algo-method.com/descriptions/133)
class UnionFind():
    # 初期化
    def __init__(self, n:int):
        self.par = [-1] * n
        self.rank = [0] * n
        self.siz = [1] * n
        self.len = n

    # 根を求める
    def root(self, x:int) -> int:
        if self.par[x] == -1: return x # x が根の場合は x を返す
        else:
            self.par[x] = self.root(self.par[x]) # 経路圧縮
            return self.par[x]

    # x と y が同じグループに属するか (根が一致するか)
    def issame(self, x:int, y:int) -> bool:
        return self.root(x) == self.root(y)

    # x を含むグループと y を含むグループを併合する
    def unite(self, x:int, y:int) -> bool:
        # x 側と y 側の根を取得する
        rx = self.root(x)
        ry = self.root(y)
        if rx == ry: return False # すでに同じグループのときは何もしない
        # union by rank
        if self.rank[rx] < self.rank[ry]: # ry 側の rank が小さくなるようにする
            rx, ry = ry, rx
        self.par[ry] = rx # ry を rx の子とする
        if self.rank[rx] == self.rank[ry]: # rx 側の rank を調整する
            self.rank[rx] += 1
        self.siz[rx] += self.siz[ry] # rx 側の siz を調整する
        return True
        
    # x を含む根付き木のサイズを求める
    def size(self, x:int) -> int:
        return self.siz[self.root(x)]
    
    def solve(self) -> int:
        x = 0
        for i in range(self.len):
            if self.par[i] == -1:
                x += self.siz[i] // 2
        return x


N,M = map(int, input().split())

UF = UnionFind(2*N)

for i in range(M):
    a,b = map(int, input().split())
    UF.unite(a-1,b-1)

#print(vars(UF))

x = UF.solve()

print(N-x)
0