結果

問題 No.898 tri-βutree
ユーザー H3PO4H3PO4
提出日時 2021-03-27 09:00:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,006 ms / 4,000 ms
コード長 1,935 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 120,192 KB
最終ジャッジ日時 2024-11-08 23:56:08
合計ジャッジ時間 18,359 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
120,192 KB
testcase_01 AC 49 ms
53,888 KB
testcase_02 AC 56 ms
61,824 KB
testcase_03 AC 56 ms
61,824 KB
testcase_04 AC 55 ms
61,696 KB
testcase_05 AC 56 ms
61,824 KB
testcase_06 AC 56 ms
61,824 KB
testcase_07 AC 965 ms
117,332 KB
testcase_08 AC 963 ms
116,704 KB
testcase_09 AC 981 ms
115,564 KB
testcase_10 AC 974 ms
116,060 KB
testcase_11 AC 982 ms
116,436 KB
testcase_12 AC 953 ms
116,636 KB
testcase_13 AC 966 ms
115,760 KB
testcase_14 AC 993 ms
116,204 KB
testcase_15 AC 961 ms
116,756 KB
testcase_16 AC 965 ms
116,060 KB
testcase_17 AC 979 ms
115,448 KB
testcase_18 AC 972 ms
117,104 KB
testcase_19 AC 979 ms
116,172 KB
testcase_20 AC 1,006 ms
115,620 KB
testcase_21 AC 988 ms
117,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline

N = int(input())
T = [[] for _ in range(N)]
for _ in range(N - 1):
    u, v, w = map(int, input().split())
    T[u].append((v, w))
    T[v].append((u, w))

d = deque([0])
prv = [-1] * N
depth = [None] * N
depth[0] = 0
acc = [0] * N
while d:
    v = d.pop()
    depv = depth[v]
    accv = acc[v]
    for x, w in T[v]:
        if depth[x] is None:
            prv[x] = v
            depth[x] = depv + 1
            acc[x] = accv + w
            d.append(x)

# https://tjkendev.github.io/procon-library/python/graph/lca-doubling.html から拝借しています。

# N: 頂点数
# G[v]: 頂点vの子頂点 (親頂点は含まない)
#
# - construct
# prv[u] = v: 頂点uの一つ上の祖先頂点v
# - lca
# kprv[k][u] = v: 頂点uの2^k個上の祖先頂点v
# depth[u]: 頂点uの深さ (根頂点は0)

LV = (N - 1).bit_length()


def construct(prv):
    kprv = [prv]
    S = prv
    for k in range(LV):
        T = [0] * N
        for i in range(N):
            if S[i] is None:
                continue
            T[i] = S[S[i]]
        kprv.append(T)
        S = T
    return kprv


def lca(u, v, kprv, depth):
    dd = depth[v] - depth[u]
    if dd < 0:
        u, v = v, u
        dd = -dd

    # assert depth[u] <= depth[v]
    for k in range(LV + 1):
        if dd & 1:
            v = kprv[k][v]
        dd >>= 1

    # assert depth[u] == depth[v]
    if u == v:
        return u

    for k in range(LV - 1, -1, -1):
        pu = kprv[k][u]
        pv = kprv[k][v]
        if pu != pv:
            u = pu
            v = pv

    # assert kprv[0][u] == kprv[0][v]
    return kprv[0][u]


kprv = construct(prv)


def dist(u, v):
    l = lca(u, v, kprv, depth)
    return acc[u] + acc[v] - 2 * acc[l]


Q = int(input())
for _ in range(Q):
    x, y, z = map(int, input().split())
    ans = (dist(x, y) + dist(y, z) + dist(z, x)) // 2
    print(ans)
0