結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー とりゐとりゐ
提出日時 2023-08-04 21:48:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,040 KB
最終ジャッジ日時 2024-05-05 01:22:46
合計ジャッジ時間 4,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 110 ms
78,208 KB
testcase_05 AC 157 ms
83,456 KB
testcase_06 AC 163 ms
84,224 KB
testcase_07 AC 119 ms
80,256 KB
testcase_08 AC 132 ms
81,408 KB
testcase_09 AC 172 ms
85,632 KB
testcase_10 AC 157 ms
86,144 KB
testcase_11 AC 137 ms
81,152 KB
testcase_12 AC 164 ms
86,272 KB
testcase_13 AC 135 ms
81,024 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 37 ms
52,352 KB
testcase_16 AC 37 ms
52,224 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 73 ms
85,888 KB
testcase_20 AC 50 ms
65,024 KB
testcase_21 AC 55 ms
71,296 KB
testcase_22 AC 74 ms
84,992 KB
testcase_23 AC 59 ms
78,080 KB
testcase_24 AC 65 ms
77,952 KB
testcase_25 AC 59 ms
73,600 KB
testcase_26 AC 41 ms
53,504 KB
testcase_27 AC 102 ms
86,272 KB
testcase_28 AC 92 ms
84,352 KB
testcase_29 AC 88 ms
78,464 KB
testcase_30 AC 66 ms
72,960 KB
testcase_31 AC 99 ms
87,040 KB
testcase_32 AC 71 ms
71,040 KB
testcase_33 AC 65 ms
71,040 KB
testcase_34 AC 77 ms
75,264 KB
権限があれば一括ダウンロードができます

ソースコード

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
  size=0
  while todo:
    v=todo.pop()
    size+=1
    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)
  if size!=1 or IN[i]!=0:
    G.append([res,flag])

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

if cnt2==0:
  print(ans-1)
else:
  print(ans+cnt2-1)
0