結果

問題 No.2418 情報通だよ!Nafmoくん
ユーザー shobonvipshobonvip
提出日時 2023-08-12 13:38:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-04-30 03:39:39
合計ジャッジ時間 4,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 185 ms
77,824 KB
testcase_04 AC 99 ms
77,696 KB
testcase_05 AC 218 ms
77,568 KB
testcase_06 AC 156 ms
77,824 KB
testcase_07 AC 209 ms
77,312 KB
testcase_08 AC 148 ms
78,080 KB
testcase_09 AC 233 ms
77,952 KB
testcase_10 AC 200 ms
77,696 KB
testcase_11 AC 178 ms
77,568 KB
testcase_12 AC 156 ms
77,568 KB
testcase_13 AC 148 ms
77,184 KB
testcase_14 AC 166 ms
77,184 KB
testcase_15 AC 125 ms
76,288 KB
testcase_16 AC 249 ms
77,824 KB
testcase_17 AC 135 ms
77,056 KB
testcase_18 AC 146 ms
77,312 KB
testcase_19 AC 89 ms
75,648 KB
testcase_20 AC 139 ms
76,544 KB
testcase_21 AC 147 ms
77,696 KB
testcase_22 AC 168 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
	def __init__(self, n):
		self.n = n
		self.parents = [-1] * 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 union(self, x, y):
		x = self.find(x)
		y = self.find(y)
		if x == y:
			return
		if self.parents[x] > self.parents[y]:
			x, y = y, x
		self.parents[x] += self.parents[y]
		self.parents[y] = x

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

ans = n
for i in range(2*n):
	if uf.find(i) == i:
		siz = -uf.parents[i]
		ans -= siz // 2

print(ans)
0