結果

問題 No.1639 最小通信路
ユーザー DrDrpilotDrDrpilot
提出日時 2022-04-12 19:47:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 77,796 KB
最終ジャッジ日時 2024-06-01 02:56:00
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,036 KB
testcase_01 AC 58 ms
65,872 KB
testcase_02 AC 181 ms
77,432 KB
testcase_03 AC 211 ms
77,540 KB
testcase_04 AC 211 ms
77,796 KB
testcase_05 AC 110 ms
77,136 KB
testcase_06 AC 128 ms
76,916 KB
testcase_07 AC 59 ms
65,664 KB
testcase_08 AC 159 ms
77,532 KB
testcase_09 AC 70 ms
71,144 KB
testcase_10 AC 89 ms
75,716 KB
testcase_11 AC 138 ms
77,212 KB
testcase_12 AC 96 ms
76,184 KB
testcase_13 AC 178 ms
77,276 KB
testcase_14 AC 59 ms
65,144 KB
testcase_15 AC 90 ms
75,796 KB
testcase_16 AC 140 ms
77,296 KB
testcase_17 AC 157 ms
77,440 KB
testcase_18 AC 75 ms
73,800 KB
testcase_19 AC 122 ms
77,332 KB
testcase_20 AC 165 ms
77,460 KB
testcase_21 AC 53 ms
61,996 KB
testcase_22 AC 103 ms
76,260 KB
testcase_23 AC 135 ms
77,152 KB
testcase_24 AC 97 ms
75,864 KB
testcase_25 AC 70 ms
68,368 KB
testcase_26 AC 62 ms
66,540 KB
testcase_27 AC 60 ms
66,132 KB
testcase_28 AC 55 ms
63,180 KB
testcase_29 AC 101 ms
77,208 KB
testcase_30 AC 133 ms
77,620 KB
testcase_31 AC 71 ms
68,832 KB
testcase_32 AC 107 ms
77,052 KB
testcase_33 AC 65 ms
67,048 KB
testcase_34 AC 117 ms
77,128 KB
testcase_35 AC 159 ms
77,520 KB
testcase_36 AC 114 ms
77,480 KB
testcase_37 AC 115 ms
77,236 KB
testcase_38 AC 57 ms
64,408 KB
testcase_39 AC 71 ms
70,000 KB
testcase_40 AC 60 ms
65,584 KB
testcase_41 AC 66 ms
67,360 KB
testcase_42 AC 110 ms
77,556 KB
testcase_43 AC 66 ms
66,932 KB
testcase_44 AC 58 ms
64,712 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**100
ng=0
while ok-ng>1:
    mid=(ok+ng)//2
    if f(mid):
        ok=mid
    else:
        ng=mid
print(ok)
0