結果

問題 No.1833 Subway Planning
ユーザー ああいいああいい
提出日時 2022-02-05 12:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 764 ms / 4,000 ms
コード長 1,583 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 168,180 KB
最終ジャッジ日時 2024-06-11 13:28:04
合計ジャッジ時間 12,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 306 ms
142,128 KB
testcase_05 AC 335 ms
144,144 KB
testcase_06 AC 527 ms
145,228 KB
testcase_07 AC 639 ms
145,000 KB
testcase_08 AC 626 ms
143,936 KB
testcase_09 AC 432 ms
138,180 KB
testcase_10 AC 620 ms
167,336 KB
testcase_11 AC 479 ms
167,092 KB
testcase_12 AC 432 ms
162,788 KB
testcase_13 AC 621 ms
168,180 KB
testcase_14 AC 518 ms
142,152 KB
testcase_15 AC 453 ms
143,064 KB
testcase_16 AC 664 ms
148,204 KB
testcase_17 AC 764 ms
149,548 KB
testcase_18 AC 665 ms
140,500 KB
testcase_19 AC 569 ms
145,340 KB
testcase_20 AC 427 ms
126,040 KB
testcase_21 AC 654 ms
150,680 KB
testcase_22 AC 637 ms
153,676 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 36 ms
52,480 KB
testcase_25 AC 35 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

G = [[] for _ in range(N+1)]
edge = []
for _ in range(N-1):
    a,b,c = map(int,input().split())
    G[a].append((b,c))
    G[b].append((a,c))
    edge.append((c,a,b))
edge.sort(reverse = True,key = lambda x:x[0])
M,u,v = edge[0]
_min = edge[0][0]
import sys
sys.setrecursionlimit(10 ** 8)
parent = [0] * (N+1)
parent[u] = (u,M)
parent[v] = (v,M)
"""
def dfs(now,p):
    for v,c in G[now]:
        if v == p:continue
        parent[v] = (now,c)
        dfs(v,now)
"""
def dfs(now,p):
    stack = [(now,p)]
    while stack:
        now,p = stack.pop()
        for v,c in G[now]:
            if v == p:continue
            parent[v] = (now,c)
            stack.append((v,now))
dfs(u,v)
dfs(v,u)
memo = [0] * (N+1)
memo[u] = 1
memo[v] = 1
for i in range(1,N-1):
    c,a,b = edge[i]
    if memo[a] == 1 and memo[b] == 1:
        continue
    tmp = _min
    if parent[b][0] == a:
        a,b = b,a
    d = a
    while memo[a] == 0:
        memo[a] = 1
        if parent[a][1] < tmp:
            tmp = parent[a][1]
        a = parent[a][0]
    if a != u and a != v:
        break
    if M - tmp > c:
        break
    if u == a:
        u = d
    else:
        v = d
    _min = tmp
while parent[v][0] != v:
    parent[v] = (parent[v][0],parent[v][1] - _min)
    v = parent[v][0]
while parent[u][0] != u:
    parent[u] = (parent[u][0],parent[u][1] - _min)
    u = parent[u][0]
parent[u] = (parent[u][0],parent[u][1] - _min)
parent[v] = (parent[v][0],parent[v][1] - _min)
ans = 0
for i in range(1,N+1):
    if parent[i][1] > ans:
        ans = parent[i][1]
print(ans)
    
0