結果

問題 No.1639 最小通信路
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-12 19:50:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 80,072 KB
最終ジャッジ日時 2024-06-01 02:58:32
合計ジャッジ時間 15,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,452 KB
testcase_01 AC 67 ms
74,404 KB
testcase_02 AC 938 ms
80,024 KB
testcase_03 AC 891 ms
78,224 KB
testcase_04 AC 881 ms
78,312 KB
testcase_05 AC 278 ms
77,332 KB
testcase_06 AC 424 ms
77,320 KB
testcase_07 AC 72 ms
76,448 KB
testcase_08 AC 718 ms
78,792 KB
testcase_09 AC 118 ms
76,292 KB
testcase_10 AC 176 ms
76,488 KB
testcase_11 AC 523 ms
77,852 KB
testcase_12 AC 231 ms
76,416 KB
testcase_13 AC 908 ms
80,072 KB
testcase_14 AC 66 ms
73,356 KB
testcase_15 AC 188 ms
76,420 KB
testcase_16 AC 562 ms
77,816 KB
testcase_17 AC 715 ms
78,960 KB
testcase_18 AC 117 ms
76,792 KB
testcase_19 AC 325 ms
77,416 KB
testcase_20 AC 734 ms
78,496 KB
testcase_21 AC 62 ms
71,904 KB
testcase_22 AC 242 ms
76,704 KB
testcase_23 AC 430 ms
77,540 KB
testcase_24 AC 212 ms
76,584 KB
testcase_25 AC 143 ms
76,872 KB
testcase_26 AC 103 ms
76,304 KB
testcase_27 AC 87 ms
76,580 KB
testcase_28 AC 70 ms
74,032 KB
testcase_29 AC 305 ms
77,500 KB
testcase_30 AC 451 ms
77,528 KB
testcase_31 AC 134 ms
76,552 KB
testcase_32 AC 341 ms
77,624 KB
testcase_33 AC 114 ms
76,504 KB
testcase_34 AC 314 ms
77,476 KB
testcase_35 AC 667 ms
77,912 KB
testcase_36 AC 312 ms
77,664 KB
testcase_37 AC 329 ms
77,532 KB
testcase_38 AC 82 ms
76,552 KB
testcase_39 AC 151 ms
76,552 KB
testcase_40 AC 89 ms
76,496 KB
testcase_41 AC 113 ms
76,532 KB
testcase_42 AC 432 ms
77,744 KB
testcase_43 AC 115 ms
76,632 KB
testcase_44 AC 82 ms
76,548 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(n-1)
    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
ok=10**1000
ng=0
while ok-ng>1:
    mid=(ok+ng)//2
    if f(mid):
        ok=mid
    else:
        ng=mid
print(ok)
0