結果

問題 No.1094 木登り / Climbing tree
ユーザー ああいいああいい
提出日時 2021-12-23 23:34:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,314 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,816 KB
最終ジャッジ日時 2024-11-08 07:27:03
合計ジャッジ時間 26,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 1,301 ms
142,816 KB
testcase_02 AC 256 ms
138,496 KB
testcase_03 AC 259 ms
80,848 KB
testcase_04 AC 377 ms
104,556 KB
testcase_05 AC 572 ms
132,352 KB
testcase_06 AC 557 ms
97,000 KB
testcase_07 AC 1,054 ms
141,288 KB
testcase_08 AC 1,059 ms
141,536 KB
testcase_09 AC 1,039 ms
141,664 KB
testcase_10 AC 1,062 ms
141,424 KB
testcase_11 AC 1,156 ms
141,396 KB
testcase_12 AC 1,125 ms
142,172 KB
testcase_13 AC 1,100 ms
141,792 KB
testcase_14 AC 1,080 ms
141,772 KB
testcase_15 AC 418 ms
91,384 KB
testcase_16 AC 643 ms
125,804 KB
testcase_17 AC 518 ms
105,452 KB
testcase_18 AC 475 ms
98,008 KB
testcase_19 AC 581 ms
116,828 KB
testcase_20 AC 1,202 ms
141,676 KB
testcase_21 AC 559 ms
107,248 KB
testcase_22 AC 1,111 ms
141,284 KB
testcase_23 AC 1,075 ms
142,756 KB
testcase_24 AC 1,121 ms
142,740 KB
testcase_25 AC 1,314 ms
142,736 KB
testcase_26 AC 1,095 ms
142,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
r = sys.stdin

N = int(r.readline())
G = [[] for _ in range(N+1)]
for _ in range(N-1):
    a,b,c = map(int,r.readline().split())
    G[a].append((b,c))
    G[b].append((a,c))

n = 1
while 1 << n < N:
    n += 1
dp = [[0] * (N+1) for _ in range(n)]
depth = [0] * (N+1)
depth2 = [0] * (N+1)
q = []
q.append((1,0))
while len(q):
    now,parent = q.pop()
    for v,c in G[now]:
        if v != parent:
            depth[v] = depth[now] + c
            depth2[v] = depth2[now] + 1
            q.append((v,now))
            dp[0][v] = now
for i in range(1,n):
    for j in range(1,N+1):
        dp[i][j] = dp[i-1][dp[i-1][j]]
def lca(u,v):
    if u == v:
        return u
    if depth2[v] > depth2[u]:
        u,v = v,u
    delta = depth2[u] - depth2[v]
    for j in range(n):
        mask = 1 << j
        if delta & mask:
            u = dp[j][u]
    if u == v:return u
    for k in reversed(range(n)):
        if dp[k][u] != dp[k][v]:
            u = dp[k][u]
            v = dp[k][v]
    return dp[0][u]

Q = int(r.readline())
for _ in range(Q):
    s,t = map(int,r.readline().split())
    l = lca(s,t)
    ans = depth[s] + depth[t] - 2 * depth[l]
    print(ans)

    
0