結果

問題 No.1094 木登り / Climbing tree
ユーザー 👑 KazunKazun
提出日時 2020-07-03 03:09:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,110 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 160,928 KB
最終ジャッジ日時 2024-09-15 23:27:12
合計ジャッジ時間 30,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 TLE -
testcase_02 AC 481 ms
147,676 KB
testcase_03 AC 578 ms
82,768 KB
testcase_04 AC 695 ms
114,388 KB
testcase_05 AC 1,080 ms
149,984 KB
testcase_06 AC 1,176 ms
104,860 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,106 ms
96,000 KB
testcase_16 AC 1,694 ms
139,808 KB
testcase_17 AC 1,416 ms
114,864 KB
testcase_18 AC 1,279 ms
105,704 KB
testcase_19 AC 1,601 ms
129,484 KB
testcase_20 TLE -
testcase_21 AC 1,465 ms
117,152 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
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())
for _ in range(Q):
    u,v=map(int,input().split())
    print(T[u]+T[v]-2*T[lca(u,v)])
0