結果

問題 No.898 tri-βutree
ユーザー H20H20
提出日時 2021-10-01 13:21:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,456 ms / 4,000 ms
コード長 1,477 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 208,036 KB
最終ジャッジ日時 2024-07-18 23:59:53
合計ジャッジ時間 23,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
208,036 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 51 ms
62,080 KB
testcase_03 AC 48 ms
61,696 KB
testcase_04 AC 48 ms
62,080 KB
testcase_05 AC 49 ms
61,824 KB
testcase_06 AC 47 ms
61,696 KB
testcase_07 AC 1,254 ms
110,592 KB
testcase_08 AC 1,240 ms
110,592 KB
testcase_09 AC 1,265 ms
110,336 KB
testcase_10 AC 1,342 ms
110,976 KB
testcase_11 AC 1,234 ms
110,880 KB
testcase_12 AC 1,281 ms
110,592 KB
testcase_13 AC 1,350 ms
110,976 KB
testcase_14 AC 1,294 ms
110,848 KB
testcase_15 AC 1,296 ms
110,848 KB
testcase_16 AC 1,317 ms
111,872 KB
testcase_17 AC 1,269 ms
110,592 KB
testcase_18 AC 1,254 ms
110,720 KB
testcase_19 AC 1,216 ms
110,336 KB
testcase_20 AC 1,456 ms
110,720 KB
testcase_21 AC 1,335 ms
110,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

# N: 頂点数
# G[v]: 頂点vの子頂点 (親頂点は含む)

# Euler Tour の構築
N = int(input())
G = [[] for _ in range(N)]

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

S = []
F = [0]*N
depth = [0]*N

def dfs(v, d , p):
    F[v] = len(S)
    depth[v] = d
    S.append(v)
    for n,w in G[v]:
        if p!=n:
            dfs(n, d+w, v)
            S.append(v)
dfs(0, 0, -1)

# 存在しない範囲は深さが他よりも大きくなるようにする
INF = (10**18, 0)

# LCAを計算するクエリの前計算
M = 2*N
M0 = 2**(M-1).bit_length()
data = [INF]*(2*M0)
for i, v in enumerate(S):
    data[M0-1+i] = (depth[v], i)
for i in range(M0-2, -1, -1):
    data[i] = min(data[2*i+1], data[2*i+2])

# LCAの計算 (generatorで最小値を求める)
def _query(a, b):
    yield INF
    a += M0; b += M0
    while a < b:
        if b & 1:
            b -= 1
            yield data[b-1]
        if a & 1:
            yield data[a-1]
            a += 1
        a >>= 1; b >>= 1

# LCAの計算 (外から呼び出す関数)
def query(u, v):
    fu = F[u]; fv = F[v]
    if fu > fv:
        fu, fv = fv, fu
    return S[min(_query(fu, fv+1))[1]]

# 2点間の距離
def distance(u, v):
    return depth[u]+depth[v]-2*depth[query(u, v)]

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