結果
問題 | No.1094 木登り / Climbing tree |
ユーザー | 👑 Kazun |
提出日時 | 2020-07-02 16:40:17 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,056 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 144,076 KB |
最終ジャッジ日時 | 2024-09-15 01:07:17 |
合計ジャッジ時間 | 5,325 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
16,256 KB |
testcase_01 | TLE | - |
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 | -- | - |
ソースコード
from collections import deque J=19 N=int(input()) E={i:[] for i in range(1,N+1)} for _ in range(N-1): u,v,w=map(int,input().split()) E[u].append((v,w)) E[v].append((u,w)) T=[None]*(N+1) A=[[1]*J for _ in range(N+1)] Depth=[None]*(N+1) Q=deque() T[1]=0 Depth[1]=0 Q.append(1) while Q: v=Q.popleft() for (u,w) in E[v]: if T[u]==None: T[u]=T[v]+w Depth[u]=Depth[v]+1 A[u][0]=v Q.append(u) for p in range(J-1): for u in range(1,N+1): v=A[u][p] A[u][p+1]=A[v][p] def upper(u,k): i=0 while k>0: if k%2==1: u=A[u][i] i+=1 k//=2 return u def lca(u,v): x=Depth[u] y=Depth[v] u=upper(u,max(x-y,0)) v=upper(v,max(y-x,0)) if u==v: return u for j in range(J-1,-1,-1): if A[u][j]!=A[v][j]: u=A[u][j] v=A[v][j] return A[u][0] Q=int(input()) for _ in range(Q): u,v=map(int,input().split()) print(T[u]+T[v]-2*T[lca(u,v)])