結果

問題 No.1639 最小通信路
ユーザー raven7959raven7959
提出日時 2021-08-17 16:29:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 76,952 KB
最終ジャッジ日時 2024-10-10 14:55:17
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,128 KB
testcase_01 AC 38 ms
52,528 KB
testcase_02 AC 70 ms
74,912 KB
testcase_03 AC 80 ms
76,884 KB
testcase_04 AC 83 ms
76,880 KB
testcase_05 AC 68 ms
71,288 KB
testcase_06 AC 67 ms
71,952 KB
testcase_07 AC 37 ms
52,732 KB
testcase_08 AC 67 ms
73,336 KB
testcase_09 AC 40 ms
53,780 KB
testcase_10 AC 46 ms
61,668 KB
testcase_11 AC 64 ms
72,788 KB
testcase_12 AC 52 ms
63,764 KB
testcase_13 AC 67 ms
74,064 KB
testcase_14 AC 35 ms
53,440 KB
testcase_15 AC 48 ms
61,776 KB
testcase_16 AC 65 ms
72,184 KB
testcase_17 AC 66 ms
73,536 KB
testcase_18 AC 38 ms
54,348 KB
testcase_19 AC 64 ms
72,112 KB
testcase_20 AC 70 ms
73,616 KB
testcase_21 AC 38 ms
52,652 KB
testcase_22 AC 53 ms
64,264 KB
testcase_23 AC 67 ms
71,876 KB
testcase_24 AC 52 ms
64,292 KB
testcase_25 AC 45 ms
60,020 KB
testcase_26 AC 39 ms
53,552 KB
testcase_27 AC 37 ms
53,348 KB
testcase_28 AC 35 ms
53,216 KB
testcase_29 AC 68 ms
72,800 KB
testcase_30 AC 71 ms
74,552 KB
testcase_31 AC 44 ms
55,516 KB
testcase_32 AC 68 ms
74,064 KB
testcase_33 AC 39 ms
55,276 KB
testcase_34 AC 65 ms
73,208 KB
testcase_35 AC 77 ms
76,952 KB
testcase_36 AC 67 ms
73,676 KB
testcase_37 AC 67 ms
73,040 KB
testcase_38 AC 37 ms
53,776 KB
testcase_39 AC 44 ms
61,192 KB
testcase_40 AC 36 ms
52,900 KB
testcase_41 AC 39 ms
54,260 KB
testcase_42 AC 68 ms
74,116 KB
testcase_43 AC 41 ms
54,532 KB
testcase_44 AC 36 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
E=[]
for i in range(N*(N-1)//2):
  a,b,c=map(int,input().split())
  E.append((c,a-1,b-1))
par=[i for i in range(N)]
rank=[0]*(N+1)
def root(x):
  if par[x]==x:
    return x
  else:
    par[x]=root(par[x])
    return par[x]
def unite(x,y):
  rx,ry=root(x),root(y)
  if rx==ry:
    return
  else:
    if rank[x]<rank[y]:
      par[rx]=ry
    else:
      par[ry]=rx
      if rank[x]==rank[y]:
        rank[x]+=1
def same(x,y):
  rx,ry=root(x),root(y)
  return rx==ry
max_cost=0
for cost,s,g in E:
  if not same(s,g):
    max_cost=cost
    unite(s,g)
print(max_cost)
0