結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー グミグミ
提出日時 2023-08-12 14:17:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 104,764 KB
最終ジャッジ日時 2024-11-14 12:23:30
合計ジャッジ時間 5,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,608 KB
testcase_01 AC 42 ms
54,452 KB
testcase_02 AC 43 ms
54,652 KB
testcase_03 AC 244 ms
96,208 KB
testcase_04 AC 121 ms
101,088 KB
testcase_05 AC 226 ms
80,992 KB
testcase_06 AC 186 ms
97,524 KB
testcase_07 AC 228 ms
79,284 KB
testcase_08 AC 186 ms
104,764 KB
testcase_09 AC 275 ms
81,864 KB
testcase_10 AC 262 ms
94,244 KB
testcase_11 AC 227 ms
92,544 KB
testcase_12 AC 179 ms
91,648 KB
testcase_13 AC 158 ms
80,828 KB
testcase_14 AC 189 ms
86,724 KB
testcase_15 AC 168 ms
77,668 KB
testcase_16 AC 296 ms
86,020 KB
testcase_17 AC 157 ms
77,492 KB
testcase_18 AC 167 ms
94,896 KB
testcase_19 AC 111 ms
98,408 KB
testcase_20 AC 164 ms
77,028 KB
testcase_21 AC 172 ms
83,184 KB
testcase_22 AC 162 ms
77,972 KB
testcase_23 AC 41 ms
54,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
class UnionFind():
	def __init__(self,n):
		self.parents = list(range(n))

	def find(self, x):
		if self.parents[x] == x:
			return x
		else:
			self.parents[x] = self.find(self.parents[x])
			return self.parents[x]
	
	def union(self, x, y):
		px = self.find(x)
		py = self.find(y)
		if px != py:
			self.parents[px] = py

def main():
	n,m=map(int,input().split())
	uf = UnionFind(2*n+1)
	for i in range(m):
		a,b=map(int,input().split())
		uf.union(a,b)
	p = [uf.find(x) for x in range(2*n+1)]
	c = Counter(p[1:])
	ans = 0
	for v in c.values():
		if v % 2 == 1:
			ans += 1
	
	print(ans//2)

if __name__ == "__main__":
	main()
0