結果

問題 No.1639 最小通信路
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-30 18:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 77,384 KB
最終ジャッジ日時 2024-06-30 18:46:03
合計ジャッジ時間 4,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,876 KB
testcase_01 AC 38 ms
53,104 KB
testcase_02 AC 83 ms
76,944 KB
testcase_03 AC 92 ms
76,760 KB
testcase_04 AC 89 ms
77,384 KB
testcase_05 AC 74 ms
73,944 KB
testcase_06 AC 73 ms
74,600 KB
testcase_07 AC 39 ms
52,804 KB
testcase_08 AC 78 ms
76,856 KB
testcase_09 AC 41 ms
54,604 KB
testcase_10 AC 53 ms
62,516 KB
testcase_11 AC 78 ms
76,204 KB
testcase_12 AC 73 ms
65,220 KB
testcase_13 AC 80 ms
77,072 KB
testcase_14 AC 37 ms
52,960 KB
testcase_15 AC 54 ms
63,836 KB
testcase_16 AC 79 ms
76,080 KB
testcase_17 AC 82 ms
76,764 KB
testcase_18 AC 42 ms
54,548 KB
testcase_19 AC 73 ms
73,760 KB
testcase_20 AC 81 ms
77,012 KB
testcase_21 AC 38 ms
52,740 KB
testcase_22 AC 58 ms
66,300 KB
testcase_23 AC 73 ms
73,720 KB
testcase_24 AC 58 ms
64,740 KB
testcase_25 AC 49 ms
61,896 KB
testcase_26 AC 41 ms
53,616 KB
testcase_27 AC 39 ms
53,272 KB
testcase_28 AC 39 ms
52,464 KB
testcase_29 AC 84 ms
76,332 KB
testcase_30 AC 87 ms
76,640 KB
testcase_31 AC 49 ms
59,900 KB
testcase_32 AC 82 ms
76,468 KB
testcase_33 AC 42 ms
54,328 KB
testcase_34 AC 81 ms
76,392 KB
testcase_35 AC 91 ms
77,148 KB
testcase_36 AC 81 ms
76,652 KB
testcase_37 AC 82 ms
76,584 KB
testcase_38 AC 39 ms
53,220 KB
testcase_39 AC 49 ms
61,520 KB
testcase_40 AC 39 ms
54,408 KB
testcase_41 AC 41 ms
53,452 KB
testcase_42 AC 82 ms
76,288 KB
testcase_43 AC 44 ms
60,720 KB
testcase_44 AC 38 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l.append(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:
    rx,ry=ry,rx
  r[ry]=rx
  return

n=int(input())
e=[]
for i in range((n*(n-1))//2):
  a,b,c=map(int,input().split())
  a-=1
  b-=1
  e+=[(c,a,b)]
e.sort()
l=0
r=list(range(n))
for c,a,b in e:
  if root(a)!=root(b):
    union(a,b)
    l=c
print(l)
0