結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-08-12 13:48:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 80,848 KB
最終ジャッジ日時 2024-11-14 12:21:43
合計ジャッジ時間 5,073 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
66,908 KB
testcase_01 AC 59 ms
68,432 KB
testcase_02 AC 60 ms
67,564 KB
testcase_03 AC 206 ms
80,684 KB
testcase_04 AC 110 ms
79,440 KB
testcase_05 AC 228 ms
79,920 KB
testcase_06 AC 173 ms
80,312 KB
testcase_07 AC 222 ms
79,772 KB
testcase_08 AC 165 ms
80,848 KB
testcase_09 AC 245 ms
80,032 KB
testcase_10 AC 219 ms
80,420 KB
testcase_11 AC 199 ms
80,700 KB
testcase_12 AC 170 ms
79,864 KB
testcase_13 AC 156 ms
79,556 KB
testcase_14 AC 177 ms
79,496 KB
testcase_15 AC 145 ms
78,716 KB
testcase_16 AC 258 ms
80,036 KB
testcase_17 AC 149 ms
79,140 KB
testcase_18 AC 156 ms
80,176 KB
testcase_19 AC 105 ms
79,620 KB
testcase_20 AC 151 ms
78,808 KB
testcase_21 AC 158 ms
79,396 KB
testcase_22 AC 181 ms
79,020 KB
testcase_23 AC 59 ms
67,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import Union


class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]


n,m = map(int,input().split())

uf = Unionfind(2*n)
for _ in range(m):
    a,b = [int(x)-1 for x in input().split()]
    uf.union(a,b)

ans = 0
for i in range(2*n):
    if uf.find(i) == i:
        ans += uf.size(i)%2
print(ans//2)
0