結果

問題 No.2337 Equidistant
ユーザー koarakko5555koarakko5555
提出日時 2023-06-03 15:12:18
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 720 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 848,976 KB
最終ジャッジ日時 2024-06-09 03:35:43
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,760 KB
testcase_01 AC 33 ms
54,016 KB
testcase_02 AC 34 ms
53,888 KB
testcase_03 AC 33 ms
53,376 KB
testcase_04 AC 32 ms
53,248 KB
testcase_05 AC 34 ms
53,504 KB
testcase_06 AC 426 ms
108,928 KB
testcase_07 AC 440 ms
108,928 KB
testcase_08 AC 405 ms
108,800 KB
testcase_09 AC 438 ms
109,056 KB
testcase_10 AC 412 ms
108,928 KB
testcase_11 MLE -
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 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

#全部を始点にbfs
dist = [[-1]*N for _ in range(N)]

for st in range(N):
    dist[st][st] = 0
    q = deque([st])
    while q:
        now = q.popleft()
        for next in G[now]:
            if dist[st][next]!=-1:
                continue
            dist[st][next] = dist[st][now] + 1
            q.append(next)

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

    ans = 0
    for i in range(N):
        if dist[s][i] == dist[t][i]:
            ans += 1
    print(ans)
    
0