結果
問題 | No.2337 Equidistant |
ユーザー | ニックネーム |
提出日時 | 2023-06-02 22:10:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,793 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 147,200 KB |
最終ジャッジ日時 | 2024-06-08 23:23:49 |
合計ジャッジ時間 | 34,349 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
53,888 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 47 ms
54,272 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1,704 ms
144,216 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2,255 ms
147,072 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2,213 ms
147,200 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
class DoublingLCA: def __init__(self,n,adj,root=0): self.ancestor,self.depth = [[-1]*(n+1)],[-1]*n stack = [(root,-1,0)] while stack: v,p,dep = stack.pop() self.ancestor[0][v],self.depth[v] = p,dep for c in adj[v]: if c!=p: stack.append((c,v,dep+1)) for _ in range(max(self.depth).bit_length()-1): self.ancestor.append([self.ancestor[-1][v] for v in self.ancestor[-1]]) def get_kth_ancestor(self,v,k): for i in range(k.bit_length()): if k>>i&1: v = self.ancestor[i][v] return v def get_lca(self,u,v): depu,depv = self.depth[u],self.depth[v] if depu>depv: u,v,depu,depv = v,u,depv,depu v = self.get_kth_ancestor(v,depv-depu) if u==v: return u for k in range(depu.bit_length()-1,-1,-1): nu,nv = self.ancestor[k][u],self.ancestor[k][v] if nu!=nv: u,v = nu,nv return self.ancestor[0][u] from collections import deque n,q = map(int,input().split()) adj = [[] for _ in range(n)] for _ in range(n-1): a,b = map(int,input().split()) adj[a-1].append(b-1); adj[b-1].append(a-1) lca = DoublingLCA(n,adj) dq = deque([0]); topo = []; par = [-1]*n while dq: p = dq.popleft(); topo.append(p) for c in adj[p]: if c!=par[p]: dq.append(c); par[c] = p dp = [1]*n for v in topo[::-1]: for c in adj[v]: if c!=par[v]: dp[v] += dp[c] for _ in range(q): s,t = map(int,input().split()); s -= 1; t -= 1 x = lca.depth[s]; y = lca.depth[t] d = x+y-2*lca.depth[lca.get_lca(s,t)] if x<y: s,t,x,y = t,s,y,x a = lca.get_kth_ancestor(s,d//2) b = lca.get_kth_ancestor(s,d//2-1) if d%2: print(0) elif x==y: print(n-dp[a]+1) else: print(dp[a]-dp[b])