結果

問題 No.1094 木登り / Climbing tree
ユーザー mkawa2mkawa2
提出日時 2021-06-10 17:47:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,169 ms / 2,000 ms
コード長 2,636 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 270,464 KB
最終ジャッジ日時 2024-11-08 07:21:32
合計ジャッジ時間 26,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 1,145 ms
270,336 KB
testcase_02 AC 527 ms
239,412 KB
testcase_03 AC 256 ms
84,864 KB
testcase_04 AC 506 ms
156,416 KB
testcase_05 AC 880 ms
245,248 KB
testcase_06 AC 506 ms
125,488 KB
testcase_07 AC 1,134 ms
242,184 KB
testcase_08 AC 1,158 ms
252,456 KB
testcase_09 AC 1,154 ms
269,952 KB
testcase_10 AC 1,149 ms
270,080 KB
testcase_11 AC 1,127 ms
252,560 KB
testcase_12 AC 1,126 ms
242,000 KB
testcase_13 AC 1,159 ms
252,788 KB
testcase_14 AC 1,145 ms
242,316 KB
testcase_15 AC 368 ms
117,248 KB
testcase_16 AC 660 ms
202,440 KB
testcase_17 AC 498 ms
148,280 KB
testcase_18 AC 437 ms
129,956 KB
testcase_19 AC 583 ms
203,520 KB
testcase_20 AC 1,169 ms
270,208 KB
testcase_21 AC 508 ms
174,080 KB
testcase_22 AC 1,124 ms
241,936 KB
testcase_23 AC 1,122 ms
245,320 KB
testcase_24 AC 1,151 ms
270,464 KB
testcase_25 AC 1,154 ms
270,336 KB
testcase_26 AC 1,134 ms
250,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

class SparseTableMin:
    def __init__(self, aa):
        w = len(aa)
        h = w.bit_length()
        table = [aa]+[[-1]*w for _ in range(h-1)]
        tablei1 = table[0]
        for i in range(1, h):
            tablei = table[i]
            for j in range(w-(1 << i)+1):
                rj = j+(1 << (i-1))
                tablei[j] = min(tablei1[j], tablei1[rj])
            tablei1 = tablei
        self.table = table

    def min(self, l, r):
        i = (r-l).bit_length()-1
        tablei = self.table[i]
        Lmin = tablei[l]
        Rmin = tablei[r-(1 << i)]
        if Lmin < Rmin: Rmin = Lmin
        return Rmin

class LCA:
    def __init__(self, et, depth, first):
        n = len(depth)
        self.sp = SparseTableMin([(depth[u], u) for u in et])
        self.first = first

    def get_lca(self, u, v):
        l, r = self.first[u], self.first[v]
        if l > r: l, r = r, l
        return self.sp.min(l, r+1)[1]

def EulerTour(to, root=0):
    n = len(to)
    et = []
    depth = [0]*n
    first = [0]*n
    par = [-1]*n
    toi = [0]*n
    stack = [root]
    while stack:
        u = stack.pop()
        et.append(u)
        i = toi[u]
        if i == 0: first[u] = len(et)-1
        if i != len(to[u]):
            v, c = to[u][i]
            if v == par[u]:
                stack.append(u)
                et.pop()
            else:
                depth[v] = depth[u]+1
                cost[v] = cost[u]+c
                par[v] = u
                stack.append(u)
                stack.append(v)
            toi[u] += 1
    return et, depth, first

n = II()
to = [[] for _ in range(n)]
for _ in range(n-1):
    u, v, c = LI1()
    to[u].append((v, c+1))
    to[v].append((u, c+1))
cost = [0]*n
et, depth, first = EulerTour(to)
lca = LCA(et, depth, first)
for _ in range(II()):
    u, v = LI1()
    w = lca.get_lca(u, v)
    print(cost[u]+cost[v]-cost[w]*2)
0