結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,144 KB
testcase_01 AC 37 ms
52,660 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 172 ms
77,836 KB
testcase_04 AC 85 ms
77,000 KB
testcase_05 AC 196 ms
77,412 KB
testcase_06 AC 136 ms
78,300 KB
testcase_07 AC 189 ms
77,440 KB
testcase_08 AC 132 ms
78,096 KB
testcase_09 AC 213 ms
77,764 KB
testcase_10 AC 183 ms
77,776 KB
testcase_11 AC 163 ms
78,060 KB
testcase_12 AC 135 ms
77,880 KB
testcase_13 AC 134 ms
76,556 KB
testcase_14 AC 154 ms
77,192 KB
testcase_15 AC 113 ms
76,748 KB
testcase_16 AC 230 ms
77,820 KB
testcase_17 AC 122 ms
76,788 KB
testcase_18 AC 130 ms
77,040 KB
testcase_19 AC 76 ms
75,236 KB
testcase_20 AC 122 ms
76,148 KB
testcase_21 AC 129 ms
77,284 KB
testcase_22 AC 155 ms
77,148 KB
testcase_23 AC 37 ms
52,156 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