結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー shobonvipshobonvip
提出日時 2023-08-04 22:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-05-05 01:26:03
合計ジャッジ時間 5,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 159 ms
76,928 KB
testcase_05 AC 211 ms
77,184 KB
testcase_06 AC 232 ms
77,952 KB
testcase_07 AC 178 ms
76,672 KB
testcase_08 AC 199 ms
76,928 KB
testcase_09 AC 258 ms
77,312 KB
testcase_10 AC 202 ms
77,184 KB
testcase_11 AC 199 ms
77,312 KB
testcase_12 AC 228 ms
77,568 KB
testcase_13 AC 200 ms
77,056 KB
testcase_14 AC 36 ms
52,224 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 36 ms
52,352 KB
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 58 ms
78,208 KB
testcase_20 AC 47 ms
63,104 KB
testcase_21 AC 52 ms
68,352 KB
testcase_22 AC 57 ms
75,648 KB
testcase_23 AC 56 ms
74,368 KB
testcase_24 AC 62 ms
75,904 KB
testcase_25 AC 53 ms
70,528 KB
testcase_26 AC 40 ms
54,016 KB
testcase_27 AC 106 ms
91,776 KB
testcase_28 AC 93 ms
88,448 KB
testcase_29 AC 84 ms
78,080 KB
testcase_30 AC 63 ms
71,936 KB
testcase_31 AC 96 ms
91,520 KB
testcase_32 AC 88 ms
76,416 KB
testcase_33 AC 62 ms
69,760 KB
testcase_34 AC 90 ms
77,440 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(n)
din = [0] * n
dout = [0] * n
for i in range(m):
	u, v = map(int,input().split())
	u -= 1
	v -= 1
	din[v] += 1
	dout[u] += 1
	uf.union(u, v)

tmp = []
r = set()
for i in range(n):
	tmp.append(dout[i] - din[i])
	if din[i] > 0:
		r.add(uf.find(i))

ren = len(r)

# euler graph
ans = 0
for i in range(n):
	if tmp[i] > 0:
		ans += tmp[i]
#ans = min(ans, tar)

if ans == 0:
	print(ren - 1)
	exit()

# jun euler graph
v = [0] * n
for i in range(n):
	if tmp[i] != 0:
		v[uf.find(i)] = 1

ans = ans - 1 - sum(v) + 1 + ren - 1

print(ans)
0