結果

問題 No.2337 Equidistant
ユーザー ニックネームニックネーム
提出日時 2023-06-02 22:19:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,540 ms / 4,000 ms
コード長 1,836 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 146,908 KB
最終ジャッジ日時 2024-06-08 23:40:44
合計ジャッジ時間 37,229 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,272 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 43 ms
54,272 KB
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 45 ms
54,272 KB
testcase_05 AC 41 ms
54,272 KB
testcase_06 AC 194 ms
78,792 KB
testcase_07 AC 190 ms
78,824 KB
testcase_08 AC 206 ms
78,884 KB
testcase_09 AC 195 ms
79,128 KB
testcase_10 AC 198 ms
79,024 KB
testcase_11 AC 1,853 ms
127,744 KB
testcase_12 AC 1,886 ms
130,064 KB
testcase_13 AC 1,868 ms
129,896 KB
testcase_14 AC 1,867 ms
125,284 KB
testcase_15 AC 1,839 ms
129,656 KB
testcase_16 AC 1,898 ms
129,980 KB
testcase_17 AC 1,799 ms
126,368 KB
testcase_18 AC 1,851 ms
125,380 KB
testcase_19 AC 1,839 ms
130,236 KB
testcase_20 AC 1,842 ms
129,664 KB
testcase_21 AC 1,978 ms
143,944 KB
testcase_22 AC 1,115 ms
146,500 KB
testcase_23 AC 1,581 ms
130,688 KB
testcase_24 AC 2,540 ms
146,908 KB
testcase_25 AC 1,615 ms
129,684 KB
testcase_26 AC 2,459 ms
146,688 KB
testcase_27 AC 1,528 ms
132,096 KB
testcase_28 AC 1,549 ms
132,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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]
    if x<y: s,t,x,y = t,s,y,x
    d = x+y-2*lca.depth[lca.get_lca(s,t)]
    a = lca.get_kth_ancestor(s,d//2)
    b = lca.get_kth_ancestor(s,d//2-1)
    c = lca.get_kth_ancestor(t,d//2-1)
    if d%2: print(0)
    elif x!=y: print(dp[a]-dp[b])
    else: print(n-dp[b]-dp[c])
0