結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-02 17:46:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 95,080 KB
最終ジャッジ日時 2024-11-02 17:46:27
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,684 KB
testcase_01 AC 37 ms
52,696 KB
testcase_02 AC 38 ms
52,592 KB
testcase_03 AC 39 ms
53,844 KB
testcase_04 AC 182 ms
77,576 KB
testcase_05 AC 268 ms
79,036 KB
testcase_06 AC 284 ms
80,716 KB
testcase_07 AC 216 ms
78,024 KB
testcase_08 AC 230 ms
79,328 KB
testcase_09 AC 292 ms
79,828 KB
testcase_10 AC 265 ms
78,796 KB
testcase_11 AC 236 ms
78,964 KB
testcase_12 AC 290 ms
78,876 KB
testcase_13 AC 237 ms
79,440 KB
testcase_14 AC 37 ms
53,412 KB
testcase_15 AC 38 ms
52,508 KB
testcase_16 AC 37 ms
52,664 KB
testcase_17 AC 36 ms
52,448 KB
testcase_18 AC 37 ms
52,476 KB
testcase_19 AC 53 ms
78,116 KB
testcase_20 AC 46 ms
63,616 KB
testcase_21 AC 48 ms
68,332 KB
testcase_22 AC 52 ms
75,016 KB
testcase_23 AC 51 ms
73,388 KB
testcase_24 AC 61 ms
77,008 KB
testcase_25 AC 50 ms
71,304 KB
testcase_26 AC 43 ms
55,520 KB
testcase_27 AC 130 ms
94,568 KB
testcase_28 AC 121 ms
90,996 KB
testcase_29 AC 103 ms
79,592 KB
testcase_30 AC 64 ms
73,404 KB
testcase_31 AC 126 ms
95,080 KB
testcase_32 AC 93 ms
77,252 KB
testcase_33 AC 63 ms
71,092 KB
testcase_34 AC 109 ms
78,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l+=[p]
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  v[rx]+=v[ry]
  v[ry]=[]
  return

n,m=map(int,input().split())
r=list(range(n))
v=[[i] for i in range(n)]
d=[0]*n
f=[0]*n
for i in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  d[a]+=1
  d[b]-=1
  union(a,b)
  f[a]|=a==b
c1=0
c2=0

for l in v:
  if len(l)==0:
    continue
  if len(l)==1:
    c2+=f[l[0]]
    continue
  c2+=1
  c=sum(abs(d[i]) for i in l)
  c//=2
  if c<=1:
    continue
  c1+=c-1

print(c1+c2-1)
0