結果

問題 No.1639 最小通信路
ユーザー だれだれ
提出日時 2021-08-06 21:52:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-09-17 01:47:49
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,784 KB
testcase_01 AC 51 ms
64,384 KB
testcase_02 AC 116 ms
77,440 KB
testcase_03 AC 151 ms
77,184 KB
testcase_04 AC 120 ms
77,440 KB
testcase_05 AC 105 ms
77,184 KB
testcase_06 AC 99 ms
77,208 KB
testcase_07 AC 51 ms
64,384 KB
testcase_08 AC 109 ms
77,688 KB
testcase_09 AC 60 ms
68,992 KB
testcase_10 AC 71 ms
73,088 KB
testcase_11 AC 100 ms
77,568 KB
testcase_12 AC 82 ms
76,672 KB
testcase_13 AC 115 ms
77,464 KB
testcase_14 AC 51 ms
64,768 KB
testcase_15 AC 77 ms
74,368 KB
testcase_16 AC 103 ms
76,928 KB
testcase_17 AC 108 ms
77,432 KB
testcase_18 AC 60 ms
68,480 KB
testcase_19 AC 97 ms
77,184 KB
testcase_20 AC 108 ms
77,428 KB
testcase_21 AC 46 ms
61,312 KB
testcase_22 AC 82 ms
76,672 KB
testcase_23 AC 98 ms
77,440 KB
testcase_24 AC 79 ms
74,880 KB
testcase_25 AC 63 ms
68,992 KB
testcase_26 AC 54 ms
65,920 KB
testcase_27 AC 54 ms
66,176 KB
testcase_28 AC 53 ms
65,024 KB
testcase_29 AC 98 ms
77,424 KB
testcase_30 AC 114 ms
77,312 KB
testcase_31 AC 64 ms
67,840 KB
testcase_32 AC 105 ms
77,588 KB
testcase_33 AC 59 ms
66,688 KB
testcase_34 AC 101 ms
77,516 KB
testcase_35 AC 125 ms
77,440 KB
testcase_36 AC 102 ms
77,312 KB
testcase_37 AC 113 ms
77,192 KB
testcase_38 AC 57 ms
64,896 KB
testcase_39 AC 65 ms
68,736 KB
testcase_40 AC 53 ms
65,408 KB
testcase_41 AC 57 ms
66,816 KB
testcase_42 AC 108 ms
77,440 KB
testcase_43 AC 57 ms
67,072 KB
testcase_44 AC 51 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())
edge = [[] for _ in range(n)]

for _ in range(n * (n - 1) // 2):
    a, b, c = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append((b, c))
    edge[b].append((a, c))

ok = 10 ** 100
ng = 0

while ok - ng > 1:
    mid = (ok + ng) // 2
    que = deque()
    que.append(0)
    visited = [0] * n
    visited[0] = 1
    while que:
        now = que.popleft()
        for i, j in edge[now]:
            if j > mid:
                continue
            if visited[i]:
                continue
            visited[i] = 1
            que.append(i)
    f = 1
    for i in range(n):
        f &= visited[i]
    if f:
        ok = mid
    else:
        ng = mid

print(ok)
0