結果

問題 No.2072 Anatomy
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-01 15:11:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 93,964 KB
最終ジャッジ日時 2024-09-01 15:12:07
合計ジャッジ時間 10,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,212 KB
testcase_01 AC 38 ms
54,168 KB
testcase_02 AC 44 ms
61,264 KB
testcase_03 AC 46 ms
61,364 KB
testcase_04 AC 39 ms
53,560 KB
testcase_05 AC 45 ms
60,292 KB
testcase_06 AC 42 ms
59,140 KB
testcase_07 AC 45 ms
61,352 KB
testcase_08 AC 369 ms
90,732 KB
testcase_09 AC 321 ms
91,284 KB
testcase_10 AC 355 ms
90,076 KB
testcase_11 AC 383 ms
92,436 KB
testcase_12 AC 288 ms
89,036 KB
testcase_13 AC 413 ms
93,452 KB
testcase_14 AC 311 ms
86,352 KB
testcase_15 AC 248 ms
86,484 KB
testcase_16 AC 400 ms
93,064 KB
testcase_17 AC 343 ms
93,328 KB
testcase_18 AC 244 ms
84,564 KB
testcase_19 AC 412 ms
93,712 KB
testcase_20 AC 417 ms
93,708 KB
testcase_21 AC 350 ms
92,692 KB
testcase_22 AC 399 ms
93,708 KB
testcase_23 AC 317 ms
92,808 KB
testcase_24 AC 318 ms
92,584 KB
testcase_25 AC 429 ms
93,456 KB
testcase_26 AC 35 ms
52,688 KB
testcase_27 AC 320 ms
92,812 KB
testcase_28 AC 314 ms
93,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
e=[]
for i in range(m):
  a,b=map(int,input().split())
  a-=1
  b-=1
  e+=[(a,b)]

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
  return

r=list(range(n))
f=[0]*n
for a,b in e[::-1]:
  ra=root(a)
  rb=root(b)
  p=min(ra,rb)
  if ra==rb:
    f[p]+=1
  else:
    f[p]=max(f[ra],f[rb])+1
    union(a,b)
print(f[0])
0