結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー shobonvipshobonvip
提出日時 2023-08-04 22:25:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 91,844 KB
最終ジャッジ日時 2024-11-26 17:50:15
合計ジャッジ時間 5,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 162 ms
76,544 KB
testcase_05 AC 231 ms
76,928 KB
testcase_06 AC 247 ms
77,824 KB
testcase_07 AC 179 ms
76,972 KB
testcase_08 AC 204 ms
76,544 KB
testcase_09 AC 254 ms
77,056 KB
testcase_10 AC 216 ms
76,800 KB
testcase_11 AC 202 ms
77,568 KB
testcase_12 AC 228 ms
77,708 KB
testcase_13 AC 207 ms
76,928 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 63 ms
77,952 KB
testcase_20 AC 50 ms
63,104 KB
testcase_21 AC 54 ms
68,608 KB
testcase_22 AC 60 ms
76,288 KB
testcase_23 AC 59 ms
74,624 KB
testcase_24 AC 66 ms
75,264 KB
testcase_25 AC 55 ms
70,528 KB
testcase_26 AC 43 ms
54,144 KB
testcase_27 AC 104 ms
91,844 KB
testcase_28 AC 96 ms
87,936 KB
testcase_29 AC 89 ms
78,080 KB
testcase_30 AC 65 ms
71,552 KB
testcase_31 AC 100 ms
91,520 KB
testcase_32 AC 91 ms
76,800 KB
testcase_33 AC 65 ms
70,400 KB
testcase_34 AC 91 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(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