結果

問題 No.1639 最小通信路
ユーザー harurunharurun
提出日時 2021-06-23 16:36:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,092 KB
実行使用メモリ 10,200 KB
最終ジャッジ日時 2023-10-17 02:19:11
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,148 KB
testcase_01 AC 28 ms
10,148 KB
testcase_02 AC 29 ms
10,192 KB
testcase_03 AC 29 ms
10,200 KB
testcase_04 AC 36 ms
10,200 KB
testcase_05 AC 29 ms
10,164 KB
testcase_06 AC 29 ms
10,168 KB
testcase_07 AC 29 ms
10,148 KB
testcase_08 AC 33 ms
10,184 KB
testcase_09 AC 29 ms
10,148 KB
testcase_10 AC 29 ms
10,156 KB
testcase_11 AC 29 ms
10,176 KB
testcase_12 AC 29 ms
10,156 KB
testcase_13 AC 30 ms
10,192 KB
testcase_14 AC 29 ms
10,148 KB
testcase_15 AC 29 ms
10,156 KB
testcase_16 AC 29 ms
10,176 KB
testcase_17 AC 29 ms
10,184 KB
testcase_18 AC 28 ms
10,148 KB
testcase_19 AC 29 ms
10,164 KB
testcase_20 AC 29 ms
10,184 KB
testcase_21 AC 29 ms
10,148 KB
testcase_22 AC 29 ms
10,156 KB
testcase_23 AC 29 ms
10,168 KB
testcase_24 AC 28 ms
10,156 KB
testcase_25 AC 29 ms
10,156 KB
testcase_26 AC 29 ms
10,156 KB
testcase_27 AC 28 ms
10,148 KB
testcase_28 AC 29 ms
10,148 KB
testcase_29 AC 29 ms
10,164 KB
testcase_30 AC 29 ms
10,180 KB
testcase_31 AC 29 ms
10,156 KB
testcase_32 AC 29 ms
10,176 KB
testcase_33 AC 28 ms
10,156 KB
testcase_34 AC 29 ms
10,172 KB
testcase_35 AC 29 ms
10,192 KB
testcase_36 AC 29 ms
10,172 KB
testcase_37 AC 29 ms
10,176 KB
testcase_38 AC 29 ms
10,148 KB
testcase_39 AC 29 ms
10,156 KB
testcase_40 AC 29 ms
10,156 KB
testcase_41 AC 29 ms
10,156 KB
testcase_42 AC 29 ms
10,180 KB
testcase_43 AC 29 ms
10,156 KB
testcase_44 AC 29 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class dsu:
  def __init__(self,n):
    assert n>0,"n must be Natural"
    self.n=n
    self.parents=[-1]*n
    return
  
  def find(self,x):
    assert x<self.n,"warning!! this is 0 index"
    if self.parents[x]<0:
      return x
    self.parents[x]=self.find(self.parents[x])
    return self.parents[x]
  
  def merge(self,x,y):
    assert x<self.n and y<self.n,"warning!! this is 0 index"
    x=self.find(x)
    y=self.find(y)
    if x==y:
      return
    if self.parents[x]>self.parents[y]:
      x,y=y,x
    self.parents[x]+=self.parents[y]
    self.parents[y]=x
    return
    
  def size(self,x):
    assert x<self.n,"warning!! this is 0 index"
    return -self.parents[self.find(x)]
    
  def same(self,x,y):
    assert x<self.n and y<self.n,"warning!! this is 0 index"
    return self.find(x)==self.find(y)
  
  def leader(self,x):
    assert x<self.n,"warning!! this is 0 index"
    if self.parents[x]<0:
      return x
    self.parents[x]=self.leader(self.parents[x])
    return self.parents[x]
  
  def groups(self):
    ld=[self.leader(i) for i in range(self.n)]
    res=[[] for _ in range(self.n)]
    for i in range(self.n):
      res[ld[i]].append(i)
    return list(filter(lambda a:a !=[],res))
from sys import stdin
pin=stdin.readline
def main():
  N=int(pin())
  uf=dsu(N)
  for _ in[0]*(N*(N-1)//2):
    a,b,s=pin().rstrip().split()
    a=int(a)
    b=int(b)
    a-=1
    b-=1
    if uf.same(a,b):
      continue
    uf.merge(a,b)
    if uf.size(0)==N:
      print(s)
      return
  return

main()
0