結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー shobonvipshobonvip
提出日時 2023-08-04 21:52:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,528 KB
最終ジャッジ日時 2024-04-22 20:11:53
合計ジャッジ時間 3,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 38 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 121 ms
76,160 KB
testcase_05 AC 144 ms
76,288 KB
testcase_06 AC 152 ms
76,800 KB
testcase_07 AC 115 ms
76,288 KB
testcase_08 AC 124 ms
76,672 KB
testcase_09 AC 168 ms
76,800 KB
testcase_10 AC 148 ms
76,800 KB
testcase_11 AC 133 ms
76,672 KB
testcase_12 AC 153 ms
76,416 KB
testcase_13 AC 132 ms
76,800 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
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 #


n, m = map(int,input().split())
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

nouse = 0
tmp = []
for i in range(n):
	tmp.append(dout[i] - din[i])
	if dout[i] == din[i] == 0:
		nouse += 1


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(max(ans, nouse + 1))
	exit()

# jun euler graph
ans -= 1
ans = max(ans, nouse + 1)

print(ans)
0