結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | ああいい |
提出日時 | 2021-12-23 23:28:08 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,127 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 821,248 KB |
最終ジャッジ日時 | 2024-09-18 19:05:00 |
合計ジャッジ時間 | 7,549 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
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 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] = depth[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)