結果

問題 No.2337 Equidistant
ユーザー titiatitia
提出日時 2023-10-03 04:42:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,795 ms / 4,000 ms
コード長 2,831 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 205,552 KB
最終ジャッジ日時 2024-07-26 13:58:49
合計ジャッジ時間 28,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 41 ms
52,864 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 AC 45 ms
53,092 KB
testcase_06 AC 144 ms
78,748 KB
testcase_07 AC 131 ms
78,464 KB
testcase_08 AC 133 ms
78,404 KB
testcase_09 AC 139 ms
78,648 KB
testcase_10 AC 132 ms
78,280 KB
testcase_11 AC 1,422 ms
173,416 KB
testcase_12 AC 1,394 ms
172,808 KB
testcase_13 AC 1,402 ms
172,744 KB
testcase_14 AC 1,398 ms
172,956 KB
testcase_15 AC 1,341 ms
174,024 KB
testcase_16 AC 1,379 ms
173,724 KB
testcase_17 AC 1,259 ms
172,988 KB
testcase_18 AC 1,326 ms
172,704 KB
testcase_19 AC 1,391 ms
173,428 KB
testcase_20 AC 1,349 ms
173,564 KB
testcase_21 AC 1,200 ms
179,232 KB
testcase_22 AC 1,066 ms
205,552 KB
testcase_23 AC 1,267 ms
175,800 KB
testcase_24 AC 1,578 ms
180,324 KB
testcase_25 AC 1,326 ms
177,456 KB
testcase_26 AC 1,795 ms
181,056 KB
testcase_27 AC 1,312 ms
178,304 KB
testcase_28 AC 1,312 ms
177,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,Q=map(int,input().split())

E=[[] for i in range(N)]

for i in range(N-1):
    a,b=map(int,input().split())
    a-=1
    b-=1

    E[a].append(b)
    E[b].append(a)

ROOT=0

QUE=[ROOT]
DEPTH=[0]*N
DEPTH[ROOT]=0

Parent=[-1]*N
Parent[ROOT]=N # ROOTの親を定めておく.
Child=[[] for i in range(N)]
TOP_SORT=[] # トポロジカルソート

while QUE: # トポロジカルソートと同時に親を見つける
    x=QUE.pop()
    TOP_SORT.append(x)
    for to in E[x]:
        if Parent[to]==-1:
            Parent[to]=x
            Child[x].append(to)
            QUE.append(to)
            DEPTH[to]=DEPTH[x]+1

Children=[1]*N

for x in TOP_SORT[::-1]: #(自分を含む)子ノードの数を調べる
    if x==ROOT:
        break
    Children[Parent[x]]+=Children[x]

DOUBLING=[[-1]*N for b in range(30)]

for i in range(N):
    if i!=ROOT:
        DOUBLING[0][i]=Parent[i]

for b in range(1,30):
    for i in range(N):
        if DOUBLING[b-1][i]!=-1:
            DOUBLING[b][i]=DOUBLING[b-1][DOUBLING[b-1][i]]

# 頂点aの先祖で深さdの頂点を探す
def search_depth(a,d):
    now=a

    for b in range(30,-1,-1):
        if (DEPTH[a]-d) & (1<<b) != 0:
            now=DOUBLING[b][now]

    return now

def lca(x,y):
    if DEPTH[x]<DEPTH[y]:
        y=search_depth(y,DEPTH[x])
    elif DEPTH[x]>DEPTH[y]:
        x=search_depth(x,DEPTH[y])

    if x==y:
        return x

    for b in range(29,-1,-1):
        if DOUBLING[b][x]!=DOUBLING[b][y]:
            x=DOUBLING[b][x]
            y=DOUBLING[b][y]

    if Parent[x]==Parent[y]:
        return Parent[x]

for tests in range(Q):
    a,b=map(int,input().split())
    a-=1
    b-=1

    if DEPTH[a]>DEPTH[b]:
        a,b=b,a

    LCA=lca(a,b)

    if LCA==a:
        dis=DEPTH[b]-DEPTH[a]

        if dis%2==1:
            print(0)
            continue
        else:
            x=search_depth(b,DEPTH[b]-dis//2)
            y=search_depth(b,DEPTH[b]-dis//2+1)
            print(Children[x]-Children[y])
    else:
        dis1=DEPTH[a]-DEPTH[LCA]
        dis2=DEPTH[b]-DEPTH[LCA]

        if (dis1+dis2)%2==1:
            print(0)
            continue
        else:
            if dis1==dis2:
                x=search_depth(a,DEPTH[LCA]+1)
                y=search_depth(b,DEPTH[LCA]+1)
                print(N-Children[x]-Children[y])
            elif dis1>dis2:
                x=search_depth(a,DEPTH[a]-(dis1+dis2)//2)
                y=search_depth(a,DEPTH[a]-(dis1+dis2)//2+1)
                print(Children[x]-Children[y])
            else:
                x=search_depth(b,DEPTH[b]-(dis1+dis2)//2)
                y=search_depth(b,DEPTH[b]-(dis1+dis2)//2+1)
                print(Children[x]-Children[y])
                
                
                

    
    

        


        
        
    
    
0