結果

問題 No.1094 木登り / Climbing tree
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-01-04 06:45:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,204 ms / 2,000 ms
コード長 3,853 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 137,968 KB
最終ジャッジ日時 2024-11-08 07:27:58
合計ジャッジ時間 27,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 1,204 ms
137,968 KB
testcase_02 AC 275 ms
135,296 KB
testcase_03 AC 400 ms
83,456 KB
testcase_04 AC 520 ms
105,476 KB
testcase_05 AC 738 ms
130,560 KB
testcase_06 AC 610 ms
97,664 KB
testcase_07 AC 1,156 ms
136,596 KB
testcase_08 AC 1,150 ms
136,768 KB
testcase_09 AC 1,178 ms
136,908 KB
testcase_10 AC 1,119 ms
136,948 KB
testcase_11 AC 1,114 ms
136,892 KB
testcase_12 AC 1,168 ms
136,812 KB
testcase_13 AC 1,103 ms
137,188 KB
testcase_14 AC 1,156 ms
137,140 KB
testcase_15 AC 491 ms
93,184 KB
testcase_16 AC 895 ms
125,512 KB
testcase_17 AC 771 ms
105,596 KB
testcase_18 AC 575 ms
99,840 KB
testcase_19 AC 604 ms
114,412 KB
testcase_20 AC 1,081 ms
136,716 KB
testcase_21 AC 556 ms
106,832 KB
testcase_22 AC 1,092 ms
136,896 KB
testcase_23 AC 1,072 ms
137,104 KB
testcase_24 AC 1,079 ms
137,188 KB
testcase_25 AC 1,083 ms
137,856 KB
testcase_26 AC 1,104 ms
137,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
from collections import deque
class LCA_wp():
    
    def __init__(self,e,root=0):
        
        self.N = len(e)
        self.e = e
        self.root = root
        self.IN = [-1]*N
        self.OUT = [-1]*N
        self.DIST = [-1]*N
        self.time = 0
        self.DIST[root] = 0
        self.parents = [-1]*N
        
        v = deque()
        v.append(~root)
        v.append(root)
        
        while v:
            x = v.pop()
            if x>=0:
                self.IN[x] = self.time
                self.time += 1
            else:
                x = ~x
                self.OUT[x] = self.time
                self.time += 1
                continue
            for ix,c in e[x]:
                if self.DIST[ix] != -1:
                    self.parents[x] = ix
                    continue
                self.DIST[ix] = self.DIST[x] + c
                v.append(~ix)
                v.append(ix)

        self.depth = [(self.DIST[i],i) for i in range(N)]
        self.init_val = [-1]*(2*N)
        for i in range(N):
            x = self.IN[i]
            y = self.OUT[i]
            self.init_val[x] = self.depth[i]
            self.init_val[y] = self.depth[self.parents[i]]
        
        self.T = self.SegTree(self.init_val)

    def lca(self,l,r):
        L = self.IN[l]
        R = self.IN[r]
        if R<L:
            L,R = R,L
        R += 1
        return self.T.query(L,R)[1]
        
        
    def distance_between(self,l,r):
        
        p = self.lca(l,r)
        return self.DIST[l]+ self.DIST[r] - 2*self.DIST[p]
        
    def distance_from_root(self,x):
        return self.DIST[x]

    class SegTree:
        """
        Segment Tree
        """
    
        def __init__(self, init_val, segfunc = None, ide_ele= None):
            """
            初期化
            
            init_val: 配列の初期値
            """
            if segfunc is None:
                def segfunc(x,y):
                    return min(x,y)
                ide_ele = (float('inf'),-1)
                
            
            n = len(init_val)
            self.segfunc = segfunc
            self.ide_ele = ide_ele
            self.num = 1 << (n - 1).bit_length()
            self.tree = [ide_ele] * 2 * self.num
            # 配列の値を葉にセット
            for i in range(n):
                self.tree[self.num + i] = init_val[i]
            # 構築していく
            for i in range(self.num - 1, 0, -1):
                self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1])
    
        def update(self, k, x):
            """
            k番目の値をxに更新
    
            k: index(0-index)
            x: update value
            """
            k += self.num
            self.tree[k] = x
            while k > 1:
                self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
                k >>= 1
    
        def query(self, l, r):
            """
            [l, r)のsegfuncしたものを得る
    
            l: index(0-index)
            r: index(0-index)
            """
            res = self.ide_ele
    
            l += self.num
            r += self.num
            while l < r:
                if l & 1:
                    res = self.segfunc(res, self.tree[l])
                    l += 1
                if r & 1:
                    res = self.segfunc(res, self.tree[r - 1])
                l >>= 1
                r >>= 1
            return res        


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

L = LCA_wp(e)
for _ in range(int(input())):
    s,t = map(int,input().split())
    s -= 1
    t -= 1
    print(L.distance_between(s,t))
0