結果

問題 No.1094 木登り / Climbing tree
ユーザー 👑 KazunKazun
提出日時 2020-10-24 15:06:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,870 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 170,516 KB
最終ジャッジ日時 2024-11-08 07:10:30
合計ジャッジ時間 40,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,888 KB
testcase_01 AC 1,714 ms
169,512 KB
testcase_02 AC 443 ms
150,764 KB
testcase_03 AC 336 ms
86,580 KB
testcase_04 AC 558 ms
115,004 KB
testcase_05 AC 977 ms
149,612 KB
testcase_06 AC 797 ms
112,004 KB
testcase_07 AC 1,772 ms
169,644 KB
testcase_08 AC 1,803 ms
170,136 KB
testcase_09 AC 1,743 ms
169,752 KB
testcase_10 AC 1,732 ms
170,516 KB
testcase_11 AC 1,703 ms
169,364 KB
testcase_12 AC 1,714 ms
169,248 KB
testcase_13 AC 1,756 ms
169,500 KB
testcase_14 AC 1,707 ms
169,368 KB
testcase_15 AC 649 ms
105,128 KB
testcase_16 AC 1,197 ms
147,704 KB
testcase_17 AC 968 ms
123,048 KB
testcase_18 AC 796 ms
114,284 KB
testcase_19 AC 1,060 ms
137,620 KB
testcase_20 AC 1,870 ms
169,704 KB
testcase_21 AC 984 ms
125,848 KB
testcase_22 AC 1,766 ms
170,476 KB
testcase_23 AC 1,792 ms
169,660 KB
testcase_24 AC 1,806 ms
169,268 KB
testcase_25 AC 1,821 ms
169,008 KB
testcase_26 AC 1,798 ms
169,276 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]*J for _ in range(N+1)]
Depth=[None]*(N+1)

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

Q.append(1)

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[u][0]=v
            Q.append(u)

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

def upper(u,k):
    i=0
    while k>0:
        if k%2==1:
            u=A[u][i]
        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):
        if A[u][j]!=A[v][j]:
            u=A[u][j]
            v=A[v][j]

    return A[u][0]

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

print(*X,sep="\n")
0