結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-16 00:26:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,095 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-05-03 10:34:42
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
76,288 KB
testcase_16 WA -
testcase_17 AC 139 ms
76,800 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 138 ms
76,544 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1]*n
        self.rank = [0]*n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

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

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1

    def root(self):
        return [i for i in range(self.n) if self.parents[i]<0]

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

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