結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー shobonvipshobonvip
提出日時 2023-08-04 22:08:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 991 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 90,080 KB
最終ジャッジ日時 2024-10-14 20:05:36
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 180 ms
76,664 KB
testcase_05 AC 231 ms
76,928 KB
testcase_06 AC 252 ms
78,068 KB
testcase_07 AC 174 ms
76,928 KB
testcase_08 AC 202 ms
76,848 KB
testcase_09 AC 254 ms
77,568 KB
testcase_10 AC 220 ms
77,056 KB
testcase_11 AC 212 ms
76,976 KB
testcase_12 AC 242 ms
77,488 KB
testcase_13 AC 216 ms
76,992 KB
testcase_14 AC 39 ms
52,480 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 39 ms
52,480 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 60 ms
76,416 KB
testcase_20 AC 47 ms
61,952 KB
testcase_21 AC 50 ms
67,584 KB
testcase_22 AC 57 ms
74,304 KB
testcase_23 AC 57 ms
73,444 KB
testcase_24 AC 63 ms
75,396 KB
testcase_25 AC 55 ms
70,916 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

tmp.sort()

# 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
if ren > 1:
	ans = max(ans - ren + 2, ren - 1)
else:
	ans = max(ans - 1, ren - 1)

print(ans)
0