結果

問題 No.1094 木登り / Climbing tree
ユーザー roarisroaris
提出日時 2020-06-24 03:33:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,243 ms / 2,000 ms
コード長 1,812 bytes
コンパイル時間 1,161 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 149,232 KB
最終ジャッジ日時 2024-11-08 05:53:14
合計ジャッジ時間 28,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,272 KB
testcase_01 AC 1,243 ms
149,096 KB
testcase_02 AC 288 ms
146,432 KB
testcase_03 AC 290 ms
81,832 KB
testcase_04 AC 403 ms
108,288 KB
testcase_05 AC 648 ms
139,904 KB
testcase_06 AC 591 ms
100,376 KB
testcase_07 AC 1,183 ms
148,604 KB
testcase_08 AC 1,193 ms
148,976 KB
testcase_09 AC 1,197 ms
148,880 KB
testcase_10 AC 1,147 ms
148,840 KB
testcase_11 AC 1,159 ms
148,888 KB
testcase_12 AC 1,133 ms
148,676 KB
testcase_13 AC 1,204 ms
148,936 KB
testcase_14 AC 1,190 ms
148,828 KB
testcase_15 AC 471 ms
93,164 KB
testcase_16 AC 684 ms
130,480 KB
testcase_17 AC 575 ms
109,568 KB
testcase_18 AC 542 ms
101,576 KB
testcase_19 AC 668 ms
122,052 KB
testcase_20 AC 1,169 ms
149,204 KB
testcase_21 AC 586 ms
112,276 KB
testcase_22 AC 1,123 ms
148,900 KB
testcase_23 AC 1,186 ms
149,100 KB
testcase_24 AC 1,165 ms
148,968 KB
testcase_25 AC 1,179 ms
149,232 KB
testcase_26 AC 1,203 ms
148,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class LowestCommonAncestor:
    def __init__(self, N, G):
        self.N = N
        self.G = G
        self.log_size = 22
        self.parent = [[-1]*self.N for _ in range(self.log_size)]
        q = deque([0])
        self.depth = [-1]*self.N
        self.depth[0] = 0
        self.d = [-1]*self.N
        self.d[0] = 0
        
        while q:
            v = q.popleft()
            
            for nv, w in self.G[v]:
                if self.depth[nv]==-1:
                    self.parent[0][nv] = v
                    self.depth[nv] = self.depth[v]+1
                    self.d[nv] = self.d[v]+w
                    q.append(nv)
                    
        for i in range(1, self.log_size):
            for v in range(self.N):
                if self.parent[i-1][v]>=0:
                    self.parent[i][v] = self.parent[i-1][self.parent[i-1][v]]
        
    def lca(self, u, v):
        if self.depth[u]>self.depth[v]:
            u, v = v, u
        
        for i in range(self.log_size):
            if ((self.depth[v]-self.depth[u])>>i)&1:
                v = self.parent[i][v]
        
        if u==v:
            return u
        
        for i in range(self.log_size-1, -1, -1):
            if self.parent[i][u]!=self.parent[i][v]:
                u, v = self.parent[i][u], self.parent[i][v]
        
        return self.parent[0][u]
    
    def dist(self, u, v):
        return self.d[u]+self.d[v]-2*self.d[self.lca(u, v)]

N = int(input())
G = [[] for _ in range(N)]

for _ in range(N-1):
    a, b, c = map(int, input().split())
    G[a-1].append((b-1, c))
    G[b-1].append((a-1, c))

LCA = LowestCommonAncestor(N, G)
Q = int(input())

for _ in range(Q):
    s, t = map(int, input().split())
    print(LCA.dist(s-1, t-1))
0