結果

問題 No.2337 Equidistant
ユーザー FromBooskaFromBooska
提出日時 2023-06-03 11:14:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,091 ms / 4,000 ms
コード長 4,246 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 86,968 KB
実行使用メモリ 159,564 KB
最終ジャッジ日時 2023-08-28 07:44:03
合計ジャッジ時間 32,513 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
71,536 KB
testcase_01 AC 88 ms
71,648 KB
testcase_02 AC 87 ms
71,752 KB
testcase_03 AC 93 ms
71,628 KB
testcase_04 AC 87 ms
71,784 KB
testcase_05 AC 90 ms
71,380 KB
testcase_06 AC 216 ms
83,028 KB
testcase_07 AC 219 ms
83,412 KB
testcase_08 AC 216 ms
83,440 KB
testcase_09 AC 225 ms
83,924 KB
testcase_10 AC 212 ms
83,324 KB
testcase_11 AC 1,534 ms
154,460 KB
testcase_12 AC 1,433 ms
154,876 KB
testcase_13 AC 1,478 ms
154,524 KB
testcase_14 AC 1,516 ms
154,520 KB
testcase_15 AC 1,536 ms
154,400 KB
testcase_16 AC 1,497 ms
154,860 KB
testcase_17 AC 1,441 ms
154,688 KB
testcase_18 AC 1,446 ms
154,260 KB
testcase_19 AC 1,505 ms
154,344 KB
testcase_20 AC 1,525 ms
154,868 KB
testcase_21 AC 1,480 ms
152,668 KB
testcase_22 AC 1,170 ms
146,768 KB
testcase_23 AC 1,383 ms
157,192 KB
testcase_24 AC 1,943 ms
152,840 KB
testcase_25 AC 1,406 ms
159,564 KB
testcase_26 AC 2,091 ms
152,788 KB
testcase_27 AC 1,491 ms
150,600 KB
testcase_28 AC 1,495 ms
159,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 僕の持ってるLCAクラスではできないことをACの人はやっているのでそのLCAクラスをコピペさせてもらう
# https://yukicoder.me/submissions/877289
# 部分木、子の数をdfsでやるとMLE or TLEなので、この方のqueにした

N, Q = map(int, input().split())
edges = [[] for i in range(N+1)]
for i in range(N-1):
    a, b = map(int, input().split())
    edges[a].append(b)
    edges[b].append(a)

## library of LCA by class
## index start from 0

import sys
sys.setrecursionlimit(10**7)
from collections import deque

class LCA:
    def __init__(self,n):
        self.size = n
        self.bitlen = n.bit_length()
        self.ancestor = [[0]*self.size for i in range(self.bitlen)]
        self.depth = [-1]*self.size
        self.dis = [-1]*self.size

    ## using [log_n][n] [n][log_n]
    ## [log_n][n] is tend to faster than [n][log_n]
    ## get parent by bfs is probably faster than dfs
    def make(self,root):
        self.depth[root] = 0
        self.dis[root] = 0
        q = deque([root])
        while q:
            now = q.popleft()
            for nex in edges[now]:
                if self.depth[nex]>= 0:
                    continue
                self.depth[nex] = self.depth[now]+1
                self.dis[nex] = self.dis[now]+1
                self.ancestor[0][nex] = now
                q.append(nex)
        for i in range(1,self.bitlen):
            for j in range(self.size):
                if self.ancestor[i-1][j] > 0:
                    self.ancestor[i][j] = self.ancestor[i-1][self.ancestor[i-1][j]]
    
    def lca(self,x,y):
        dx = self.depth[x]
        dy = self.depth[y]
        if dx < dy:
            x,y = y,x
            dx,dy = dy,dx
        dif = dx-dy
        while dif:
            s = dif & (-dif)
            x = self.ancestor[s.bit_length()-1][x]
            dif -= s
        while x != y:
            j = 0
            while self.ancestor[j][x] != self.ancestor[j][y]:
                j += 1
            if j == 0:
                return self.ancestor[0][x]
            x = self.ancestor[j-1][x]
            y = self.ancestor[j-1][y]
        return x

    def par(self,x,dep): #親parent
        now = x
        for i in range(self.bitlen)[::-1]:
            if 1 << i <= dep:
                now = self.ancestor[i][now]
                dep -= 1<<i
        return now


# 部分木、子の数を数える
# dfsだとMLE, python3だとTLE
# なのでこの方のque方法にする

root = 1
child = [0]*(N+1)
visited = [0]*(N+1)
que = [root]
visited[root] = 1
topological = []
parent = [-1]*(N+1)
while que:
    current = que.pop()
    topological.append(current)
    for nxt in edges[current]:
        if visited[nxt] == 0:
            parent[nxt] = current
            visited[nxt] = 1
            que.append(nxt)

for current in topological[::-1]:
    count = 1
    for nxt in edges[current]:
        if nxt != parent[current]:
            count += child[nxt]
    child[current] = count
    
#print(child)

# もらったLCAクラスを使ってみる

lca = LCA(N+1) # 頂点数
lca.make(1) # ルート

for q in range(Q):
    s, t = map(int, input().split())

    if lca.depth[s] < lca.depth[t]:
        s, t = t, s
        # sの方を深い方にする
        # 同じ深さならそのまま

    p = lca.lca(s, t) # LCA, lowest common ancestor

    distance_st = lca.depth[s] + lca.depth[t] - lca.depth[p]*2
    
    if distance_st%2 == 1:
        print(0)
        continue
    
    center = lca.par(s, distance_st//2)
    # 深い方の頂点であるsから、距離の半分だけ木を登った点がcenter
    #print('center', center)

    if lca.depth[s] != lca.depth[t]:
        ans = child[center] - child[lca.par(s, distance_st//2-1)]
        # s, t の深さが違うときは
        # centerの子の数から、深い方sからcenterの一歩手前の頂点の子の数を引く
    else:
        #ans = N - child[lca.par(s, distance_st//2-1)] - child[lca.par(t,distance_st//2-1)]
        ans = N - child[lca.par(s, distance_st//2-1)] - child[lca.par(t, distance_st//2-1)]
        # s, tの深さが同じ時は
        # Nから
        # centerの一歩手前の頂点の子の数を引く、両方分

    print(ans)


0