結果

問題 No.1639 最小通信路
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-28 12:39:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-06-09 04:41:54
合計ジャッジ時間 6,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,016 KB
testcase_01 AC 57 ms
64,128 KB
testcase_02 AC 193 ms
77,568 KB
testcase_03 AC 222 ms
77,440 KB
testcase_04 AC 166 ms
77,440 KB
testcase_05 AC 116 ms
76,960 KB
testcase_06 AC 132 ms
77,160 KB
testcase_07 AC 63 ms
65,132 KB
testcase_08 AC 172 ms
77,184 KB
testcase_09 AC 75 ms
70,528 KB
testcase_10 AC 89 ms
75,904 KB
testcase_11 AC 150 ms
77,184 KB
testcase_12 AC 106 ms
75,904 KB
testcase_13 AC 189 ms
77,312 KB
testcase_14 AC 62 ms
64,384 KB
testcase_15 AC 98 ms
75,952 KB
testcase_16 AC 148 ms
77,500 KB
testcase_17 AC 166 ms
77,364 KB
testcase_18 AC 82 ms
75,904 KB
testcase_19 AC 132 ms
77,440 KB
testcase_20 AC 174 ms
77,292 KB
testcase_21 AC 57 ms
61,056 KB
testcase_22 AC 109 ms
76,288 KB
testcase_23 AC 133 ms
77,184 KB
testcase_24 AC 98 ms
76,064 KB
testcase_25 AC 75 ms
67,712 KB
testcase_26 AC 61 ms
65,024 KB
testcase_27 AC 61 ms
65,664 KB
testcase_28 AC 57 ms
64,512 KB
testcase_29 AC 108 ms
77,312 KB
testcase_30 AC 144 ms
77,424 KB
testcase_31 AC 71 ms
67,584 KB
testcase_32 AC 113 ms
77,056 KB
testcase_33 AC 72 ms
67,072 KB
testcase_34 AC 121 ms
77,056 KB
testcase_35 AC 170 ms
77,440 KB
testcase_36 AC 125 ms
77,148 KB
testcase_37 AC 128 ms
77,312 KB
testcase_38 AC 62 ms
64,000 KB
testcase_39 AC 74 ms
68,336 KB
testcase_40 AC 65 ms
64,384 KB
testcase_41 AC 65 ms
66,304 KB
testcase_42 AC 109 ms
77,568 KB
testcase_43 AC 70 ms
67,456 KB
testcase_44 AC 57 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n=int(input())
g=[[] for _ in range(n)]
for _ in range(n*(n-1)//2):
    a,b,c=map(int,input().split())
    a-=1;b-=1
    g[a].append((b,c))
    g[b].append((a,c))
def f(d):
    visit=[False]*n
    q=deque()
    q.append(0)
    while q:
        now=q.popleft()
        if visit[now]:
            continue
        visit[now]=True
        for to,cost in g[now]:
            if cost>d:
                continue
            if visit[to]:
                continue
            q.append(to)
    for i in visit:
        if i==False:
            return False
    return True
r=10**100
l=0
while r-l>1:
    mid=(l+r)//2
    if f(mid):
        r=mid
    else:
        l=mid
print(r)
0