結果

問題 No.1639 最小通信路
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-08-06 21:52:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 862 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 76,572 KB
最終ジャッジ日時 2024-09-17 01:47:57
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,948 KB
testcase_01 AC 40 ms
53,564 KB
testcase_02 AC 52 ms
66,044 KB
testcase_03 AC 61 ms
70,968 KB
testcase_04 AC 76 ms
76,572 KB
testcase_05 AC 49 ms
61,556 KB
testcase_06 AC 50 ms
63,880 KB
testcase_07 AC 41 ms
52,996 KB
testcase_08 AC 50 ms
64,004 KB
testcase_09 AC 42 ms
53,292 KB
testcase_10 AC 44 ms
53,860 KB
testcase_11 AC 53 ms
62,120 KB
testcase_12 AC 44 ms
54,452 KB
testcase_13 AC 52 ms
65,208 KB
testcase_14 AC 40 ms
52,884 KB
testcase_15 AC 43 ms
54,432 KB
testcase_16 AC 50 ms
63,116 KB
testcase_17 AC 49 ms
63,428 KB
testcase_18 AC 41 ms
54,196 KB
testcase_19 AC 48 ms
63,092 KB
testcase_20 AC 51 ms
64,316 KB
testcase_21 AC 41 ms
53,220 KB
testcase_22 AC 44 ms
54,120 KB
testcase_23 AC 50 ms
63,252 KB
testcase_24 AC 44 ms
54,480 KB
testcase_25 AC 44 ms
54,084 KB
testcase_26 AC 43 ms
53,232 KB
testcase_27 AC 41 ms
53,448 KB
testcase_28 AC 39 ms
52,836 KB
testcase_29 AC 51 ms
64,192 KB
testcase_30 AC 54 ms
65,596 KB
testcase_31 AC 42 ms
54,800 KB
testcase_32 AC 51 ms
65,292 KB
testcase_33 AC 41 ms
53,640 KB
testcase_34 AC 51 ms
63,844 KB
testcase_35 AC 56 ms
67,260 KB
testcase_36 AC 51 ms
64,048 KB
testcase_37 AC 53 ms
65,088 KB
testcase_38 AC 40 ms
53,572 KB
testcase_39 AC 42 ms
54,692 KB
testcase_40 AC 46 ms
53,160 KB
testcase_41 AC 43 ms
54,632 KB
testcase_42 AC 55 ms
65,784 KB
testcase_43 AC 42 ms
54,744 KB
testcase_44 AC 42 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import heapq

def uf_find(n,p):

    ufl = []

    while p[n] != n:
        ufl.append(n)
        n = p[n]

    for i in ufl:
        p[i] = n

    return n


def uf_union(a,b,p,rank):

    ap = uf_find(a,p)
    bp = uf_find(b,p)

    if ap == bp:
        return True
    else:

        if rank[ap] > rank[bp]:
            p[bp] = ap
        elif rank[ap] < rank[bp]:
            p[ap] = bp
        else:
            p[bp] = ap
            rank[ap] += 1

        return False

N = int(stdin.readline())

CAB = []

for i in range(N*(N-1)//2):

    a,b,c = map(int,stdin.readline().split())
    CAB.append((c,a-1,b-1))

CAB.sort()

p = [i for i in range(N)]
rank = [0] * N
rem = N-1

for i in range(len(CAB)):

    c,a,b = CAB[i]

    if not uf_union(a,b,p,rank):
        rem -= 1

    if rem == 0:
        print (c)
        break
0