結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー miya145592miya145592
提出日時 2023-08-12 13:49:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 1,517 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 113,632 KB
最終ジャッジ日時 2024-11-14 12:21:59
合計ジャッジ時間 5,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,788 KB
testcase_01 AC 38 ms
53,548 KB
testcase_02 AC 39 ms
52,380 KB
testcase_03 AC 286 ms
108,204 KB
testcase_04 AC 133 ms
103,500 KB
testcase_05 AC 274 ms
89,508 KB
testcase_06 AC 231 ms
106,272 KB
testcase_07 AC 272 ms
88,104 KB
testcase_08 AC 221 ms
113,632 KB
testcase_09 AC 308 ms
92,292 KB
testcase_10 AC 314 ms
106,572 KB
testcase_11 AC 266 ms
102,360 KB
testcase_12 AC 213 ms
99,060 KB
testcase_13 AC 186 ms
84,692 KB
testcase_14 AC 226 ms
93,048 KB
testcase_15 AC 158 ms
84,992 KB
testcase_16 AC 353 ms
98,588 KB
testcase_17 AC 154 ms
81,616 KB
testcase_18 AC 202 ms
101,440 KB
testcase_19 AC 115 ms
100,516 KB
testcase_20 AC 163 ms
85,848 KB
testcase_21 AC 191 ms
88,068 KB
testcase_22 AC 207 ms
83,292 KB
testcase_23 AC 37 ms
53,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n, w=None):
        self.par = [-1]*n
        self.rank = [0]*n
        self.siz = [1]*n
        self.cnt = n
        self.min_node = [i for i in range(n)]
        self.weight = w if w else [1]*n

    def root(self, x):
        if self.par[x] == -1:
            return x
        self.par[x] = self.root(self.par[x])
        return self.par[x]

    def issame(self, x, y):
        return self.root(x) == self.root(y)
            
    def unite(self, x, y):
        px = self.root(x)
        py = self.root(y)
        if px == py:
            return False
        if self.rank[px] < self.rank[py]:
            px, py = py, px
        self.par[py] = px
        if self.rank[px] == self.rank[py]:
            self.rank[px] += 1
        self.siz[px] += self.siz[py]
        self.cnt -= 1
        self.min_node[px] = min(self.min_node[px], self.min_node[py])
        self.weight[px] += self.weight[py]
        return False

    def count(self):
        return self.cnt

    def min(self, x):
        return self.min_node[self.root(x)]

    def getweight(self, x):
        return self.weight[self.root(x)]
    
    def size(self, x):
        return self.siz[self.root(x)]

N, M = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(M)]
UF = UnionFind(2*N)
for a, b in AB:
    a-=1
    b-=1
    UF.unite(a, b)

cnt = dict()
for i in range(2*N):
    r = UF.root(i)
    s = UF.size(r)
    cnt[r] = s%2

ans = 0
for key in cnt:
    ans += cnt[key]
print(ans//2)
0