結果

問題 No.1094 木登り / Climbing tree
ユーザー qibqib
提出日時 2022-11-04 00:04:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,710 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 147,336 KB
最終ジャッジ日時 2024-07-18 05:49:29
合計ジャッジ時間 34,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,400 KB
testcase_01 AC 1,710 ms
146,304 KB
testcase_02 AC 278 ms
139,264 KB
testcase_03 AC 467 ms
81,216 KB
testcase_04 AC 492 ms
106,556 KB
testcase_05 AC 620 ms
137,344 KB
testcase_06 AC 765 ms
98,048 KB
testcase_07 AC 1,561 ms
146,956 KB
testcase_08 AC 1,364 ms
147,004 KB
testcase_09 AC 1,333 ms
147,116 KB
testcase_10 AC 1,289 ms
147,200 KB
testcase_11 AC 1,443 ms
146,860 KB
testcase_12 AC 1,367 ms
146,688 KB
testcase_13 AC 1,371 ms
146,688 KB
testcase_14 AC 1,344 ms
146,884 KB
testcase_15 AC 686 ms
91,648 KB
testcase_16 AC 918 ms
127,892 KB
testcase_17 AC 809 ms
107,196 KB
testcase_18 AC 917 ms
99,688 KB
testcase_19 AC 904 ms
118,912 KB
testcase_20 AC 1,361 ms
146,944 KB
testcase_21 AC 1,005 ms
109,272 KB
testcase_22 AC 1,371 ms
147,336 KB
testcase_23 AC 1,383 ms
146,812 KB
testcase_24 AC 1,467 ms
146,816 KB
testcase_25 AC 1,611 ms
146,316 KB
testcase_26 AC 1,465 ms
146,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n = int(input())

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

k = n.bit_length()
src = 0
doub = [[src for _ in range(n)] for _ in range(k)]
depth = [None for _ in range(n)]
depth[src] = 0
cost = [0 for _ in range(n)]
dq = deque()
dq.appendleft(src)
while len(dq) > 0:
  cur = dq.pop()
  for nxt, c in g[cur]:
    if not depth[nxt] is None:
      continue
    depth[nxt] = depth[cur] + 1
    cost[nxt] = cost[cur] + c
    doub[0][nxt] = cur
    dq.appendleft(nxt)

for i in range(1, k):
  for v in range(n):
    doub[i][v] = doub[i - 1][doub[i - 1][v]]


def lca(u, v):
  ut = u
  vt = v

  if depth[ut] > depth[vt]:
    ut, vt = vt, ut

  diff = depth[vt] - depth[ut]
  for i in range(k):
    if (diff >> i) & 1 != 0:
      vt = doub[i][vt]

  if ut != vt:
    for i in range(k - 1, -1, -1):
      if doub[i][ut] != doub[i][vt]:
        ut = doub[i][ut]
        vt = doub[i][vt]
    
    if ut != vt:
      ut = doub[0][ut]
  
  return ut


q = int(input())
for _ in range(q):
  s, t = map(int, input().split())
  s -= 1
  t -= 1

  l = lca(s, t)
  print(cost[s] + cost[t] - 2 * cost[l])
0