結果

問題 No.1094 木登り / Climbing tree
ユーザー 👑 KazunKazun
提出日時 2021-01-05 00:05:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,383 ms / 2,000 ms
コード長 1,102 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 147,360 KB
最終ジャッジ日時 2024-11-08 07:14:56
合計ジャッジ時間 29,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 1,287 ms
147,360 KB
testcase_02 AC 292 ms
138,356 KB
testcase_03 AC 345 ms
82,424 KB
testcase_04 AC 437 ms
107,972 KB
testcase_05 AC 705 ms
136,180 KB
testcase_06 AC 719 ms
99,636 KB
testcase_07 AC 1,327 ms
146,352 KB
testcase_08 AC 1,319 ms
146,340 KB
testcase_09 AC 1,174 ms
146,340 KB
testcase_10 AC 1,183 ms
146,464 KB
testcase_11 AC 1,301 ms
146,328 KB
testcase_12 AC 1,281 ms
146,212 KB
testcase_13 AC 1,164 ms
146,464 KB
testcase_14 AC 1,183 ms
146,456 KB
testcase_15 AC 467 ms
93,596 KB
testcase_16 AC 657 ms
127,364 KB
testcase_17 AC 567 ms
108,064 KB
testcase_18 AC 536 ms
101,228 KB
testcase_19 AC 626 ms
118,936 KB
testcase_20 AC 1,383 ms
146,540 KB
testcase_21 AC 589 ms
110,224 KB
testcase_22 AC 1,220 ms
146,048 KB
testcase_23 AC 1,290 ms
147,136 KB
testcase_24 AC 1,330 ms
147,260 KB
testcase_25 AC 1,310 ms
147,128 KB
testcase_26 AC 1,316 ms
146,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input=sys.stdin.readline

J=19

N=int(input())
E={i:[] for i in range(1,N+1)}
for _ in range(N-1):
    u,v,w=map(int,input().split())
    E[u].append(w*N+v-1)
    E[v].append(w*N+u-1)

T=[None]*(N+1)
A=[[1]*(N+1) for _ in range(J)]
Depth=[None]*(N+1)

Q=deque([1])
T[1]=0
Depth[1]=0


while Q:
    v=Q.popleft()
    for x in E[v]:
        u=x%N+1
        w=x//N

        if T[u]==None:
            T[u]=T[v]+w
            Depth[u]=Depth[v]+1

            A[0][u]=v
            Q.append(u)

for p in range(J-1):
    for u in range(1,N+1):
        v=A[p][u]
        A[p+1][u]=A[p][v]

def upper(u,k):
    i=0
    while k>0:
        if k%2==1:
            u=A[i][u]
        i+=1
        k//=2
    return u

def lca(u,v):
    x=Depth[u]
    y=Depth[v]
    u=upper(u,max(x-y,0))
    v=upper(v,max(y-x,0))

    if u==v:
        return u

    for j in range(J-1,-1,-1):
        X=A[j]
        if X[u]!=X[v]:
            u=X[u]
            v=X[v]

    return A[0][u]

Q=int(input())
for i in range(Q):
    u,v=map(int,input().split())
    print(T[u]+T[v]-2*T[lca(u,v)])
0