結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー 👑 rin204rin204
提出日時 2024-09-22 15:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 78,280 KB
最終ジャッジ日時 2024-11-14 12:26:16
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,280 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 37 ms
54,128 KB
testcase_03 AC 166 ms
77,820 KB
testcase_04 AC 87 ms
77,560 KB
testcase_05 AC 147 ms
77,700 KB
testcase_06 AC 137 ms
77,564 KB
testcase_07 AC 151 ms
77,116 KB
testcase_08 AC 134 ms
78,280 KB
testcase_09 AC 164 ms
77,248 KB
testcase_10 AC 170 ms
77,512 KB
testcase_11 AC 156 ms
77,564 KB
testcase_12 AC 130 ms
77,384 KB
testcase_13 AC 120 ms
77,028 KB
testcase_14 AC 135 ms
77,312 KB
testcase_15 AC 130 ms
76,536 KB
testcase_16 AC 181 ms
77,804 KB
testcase_17 AC 118 ms
76,388 KB
testcase_18 AC 125 ms
77,748 KB
testcase_19 AC 81 ms
76,912 KB
testcase_20 AC 135 ms
76,052 KB
testcase_21 AC 118 ms
77,448 KB
testcase_22 AC 127 ms
76,860 KB
testcase_23 AC 37 ms
52,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.par = [-1] * n
        self.group_ = n

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.group_ -= 1
        return True

    def size(self, x):
        return -self.par[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    @property
    def group(self):
        return self.group_


n, m = map(int, input().split())
UF = UnionFind(2 * n)
for _ in range(m):
    a, b = map(int, input().split())
    UF.unite(a - 1, b - 1)

ans = 0
for i in range(2 * n):
    if i == UF.find(i):
        ans += UF.size(i) & 1

print(ans // 2)
0