結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー とりゐとりゐ
提出日時 2023-08-04 21:42:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-04-22 20:03:37
合計ジャッジ時間 5,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 122 ms
78,336 KB
testcase_05 AC 173 ms
83,200 KB
testcase_06 AC 188 ms
83,840 KB
testcase_07 AC 136 ms
80,640 KB
testcase_08 AC 147 ms
81,152 KB
testcase_09 AC 193 ms
85,888 KB
testcase_10 AC 181 ms
86,016 KB
testcase_11 AC 157 ms
81,024 KB
testcase_12 AC 191 ms
86,016 KB
testcase_13 AC 153 ms
81,408 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,224 KB
testcase_16 WA -
testcase_17 AC 39 ms
52,480 KB
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 #

from sys import stdin
input=lambda :stdin.readline()[:-1]

n,m=map(int,input().split())
edge=[[] for i in range(n)]
IN=[0]*n
OUT=[0]*n
for i in range(m):
  a,b=map(lambda x:int(x)-1,input().split())
  IN[a]+=1
  OUT[b]+=1
  edge[a].append(b)
  edge[b].append(a)

G=[]
seen=[0]*n
for i in range(n):
  if seen[i]:
    continue
  todo=[i]
  seen[i]=1
  res=0
  flag=False
  while todo:
    v=todo.pop()
    if IN[v]>OUT[v]:
      flag=True
      res+=IN[v]-OUT[v]
    for u in edge[v]:
      if seen[u]==0:
        seen[u]=1
        todo.append(u)  
  G.append([res,flag])

  
ans=0
cnt1=0
cnt2=0
for x,y in G:
  ans+=x
  if y:
    ans-=1
  else:
    cnt2+=1

if cnt1:
  ans-=1
print(ans+max(0,cnt2-1))
0