結果

問題 No.1094 木登り / Climbing tree
ユーザー ああいいああいい
提出日時 2021-12-23 23:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,776 ms / 2,000 ms
コード長 1,132 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 141,744 KB
最終ジャッジ日時 2024-09-18 19:09:02
合計ジャッジ時間 36,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 1,763 ms
140,636 KB
testcase_02 AC 304 ms
138,824 KB
testcase_03 AC 486 ms
80,532 KB
testcase_04 AC 555 ms
104,628 KB
testcase_05 AC 703 ms
132,904 KB
testcase_06 AC 1,004 ms
96,332 KB
testcase_07 AC 1,556 ms
141,668 KB
testcase_08 AC 1,558 ms
141,308 KB
testcase_09 AC 1,582 ms
141,352 KB
testcase_10 AC 1,515 ms
141,388 KB
testcase_11 AC 1,510 ms
141,608 KB
testcase_12 AC 1,526 ms
141,732 KB
testcase_13 AC 1,543 ms
141,700 KB
testcase_14 AC 1,586 ms
141,340 KB
testcase_15 AC 879 ms
90,548 KB
testcase_16 AC 1,130 ms
125,044 KB
testcase_17 AC 997 ms
105,700 KB
testcase_18 AC 900 ms
98,212 KB
testcase_19 AC 1,015 ms
116,196 KB
testcase_20 AC 1,552 ms
141,744 KB
testcase_21 AC 987 ms
107,156 KB
testcase_22 AC 1,583 ms
141,080 KB
testcase_23 AC 1,538 ms
140,904 KB
testcase_24 AC 1,519 ms
140,756 KB
testcase_25 AC 1,776 ms
140,812 KB
testcase_26 AC 1,547 ms
140,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = 1
while 1 << n < N:
    n += 1
dp = [[0] * (N+1) for _ in range(n)]
depth = [0] * (N+1)
depth2 = [0] * (N+1)
q = []
q.append((1,0))
while len(q):
    now,parent = q.pop()
    for v,c in G[now]:
        if v != parent:
            depth[v] = depth[now] + c
            depth2[v] = depth2[now] + 1
            q.append((v,now))
            dp[0][v] = now
for i in range(1,n):
    for j in range(1,N+1):
        dp[i][j] = dp[i-1][dp[i-1][j]]
def lca(u,v):
    if u == v:
        return u
    if depth2[v] > depth2[u]:
        u,v = v,u
    delta = depth2[u] - depth2[v]
    for j in range(n):
        mask = 1 << j
        if delta & mask:
            u = dp[j][u]
    if u == v:return u
    for k in reversed(range(n)):
        if dp[k][u] != dp[k][v]:
            u = dp[k][u]
            v = dp[k][v]
    return dp[0][u]

Q = int(input())
for _ in range(Q):
    s,t = map(int,input().split())
    l = lca(s,t)
    ans = depth[s] + depth[t] - 2 * depth[l]
    print(ans)

    
0