結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー dmasuprodmasupro
提出日時 2023-08-12 15:09:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 1,614 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 114,492 KB
最終ジャッジ日時 2024-11-14 12:24:11
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,352 KB
testcase_01 AC 42 ms
55,712 KB
testcase_02 AC 41 ms
55,132 KB
testcase_03 AC 268 ms
107,036 KB
testcase_04 AC 140 ms
107,360 KB
testcase_05 AC 254 ms
83,332 KB
testcase_06 AC 220 ms
107,752 KB
testcase_07 AC 240 ms
81,296 KB
testcase_08 AC 219 ms
114,492 KB
testcase_09 AC 284 ms
85,948 KB
testcase_10 AC 276 ms
102,824 KB
testcase_11 AC 243 ms
99,716 KB
testcase_12 AC 201 ms
97,384 KB
testcase_13 AC 169 ms
83,012 KB
testcase_14 AC 207 ms
90,724 KB
testcase_15 AC 133 ms
76,928 KB
testcase_16 AC 304 ms
91,216 KB
testcase_17 AC 144 ms
77,548 KB
testcase_18 AC 194 ms
101,512 KB
testcase_19 AC 127 ms
104,080 KB
testcase_20 AC 143 ms
77,260 KB
testcase_21 AC 175 ms
85,236 KB
testcase_22 AC 182 ms
79,028 KB
testcase_23 AC 43 ms
55,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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



class UnionFind():
    '''
     - UnionFind
    n: 要素数
    '''
    def __init__(self, n):
        self.par = [-1] * n
        self.rank = [0] * n
        self.siz = [1] * n

    # 根を求める
    def root(self, x):
        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, y):
        return self.root(x) == self.root(y)

    # x を含むグループと y を含むグループを併合する
    def unite(self, x, y):
        # 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


uf = UnionFind(2*N)
g = [ [] for _ in range(2*N)]
for _ in range(M):
    a,b = list(map(int, input().split()))
    
    uf.unite(a-1,b-1)
group = [-1]*(2*N)
for i in range(2*N):
    group[i] = uf.root(i)
from collections import Counter
goup_size = Counter(group)
ans = 0
for g in goup_size:
    ans += goup_size[g]%2
print(ans//2)
    
0